10 lines
171 B
Python
10 lines
171 B
Python
|
import logging
|
||
|
from ci import app as bot
|
||
|
from app import app
|
||
|
|
||
|
# 日志记录
|
||
|
logging.basicConfig(level=logging.INFO)
|
||
|
bot.start()
|
||
|
app.run("0.0.0.0", port=10111)
|
||
|
bot.stop()
|