mirror of
https://github.com/Xtao-Labs/QQ-GitHub-Bot.git
synced 2025-02-07 10:59:44 +00:00
22 lines
452 B
Python
22 lines
452 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
@Author : yanyongyu
|
|
@Date : 2020-09-10 17:12:05
|
|
@LastEditors : yanyongyu
|
|
@LastEditTime : 2020-09-10 17:30:10
|
|
@Description : Entry File of the Bot
|
|
@GitHub : https://github.com/yanyongyu
|
|
"""
|
|
__author__ = "yanyongyu"
|
|
|
|
import nonebot
|
|
|
|
nonebot.init()
|
|
nonebot.load_plugins("src/plugins")
|
|
|
|
app = nonebot.get_asgi()
|
|
|
|
if __name__ == "__main__":
|
|
nonebot.run(app="bot:app")
|