New generation init

This commit is contained in:
Richard Chien
2018-06-15 06:58:24 +08:00
parent 6ce021926e
commit a3844eda69
61 changed files with 266 additions and 4063 deletions

10
run.py Normal file
View File

@ -0,0 +1,10 @@
import config
import none
bot = none.create_bot(config)
none.load_plugins()
app = bot.asgi
if __name__ == '__main__':
bot.run(host=config.HOST, port=config.PORT)