mirror of
https://github.com/xuthus83/LittlePaimon.git
synced 2024-12-16 13:40:53 +08:00
9 lines
158 B
Python
9 lines
158 B
Python
|
import hoshino
|
||
|
import asyncio
|
||
|
|
||
|
bot = hoshino.init()
|
||
|
app = bot.asgi
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
bot.run(use_reloader=False, loop=asyncio.get_event_loop())
|