增加群组语言功能

This commit is contained in:
zwssunny
2023-03-27 18:24:39 +08:00
parent 24de670c2c
commit 5b85e60d5d
3 changed files with 7 additions and 6 deletions

6
app.py
View File

@@ -1,6 +1,6 @@
# encoding:utf-8
import config
from config import conf, load_config
from channel import channel_factory
from common.log import logger
@@ -9,10 +9,10 @@ from plugins import *
def run():
try:
# load config
config.load_config()
load_config()
# create channel
channel_name='wx'
channel_name=conf().get('channel_type', 'wx')
channel = channel_factory.create_channel(channel_name)
if channel_name=='wx':
PluginManager().load_plugins()