PagerMaid-Pyro/pagermaid/modules/web.py

16 lines
411 B
Python
Raw Normal View History

2023-01-31 16:24:56 +00:00
from pagermaid.config import Config
from pagermaid.hook import Hook
from pagermaid.services import bot
@Hook.on_startup()
async def init_web():
if not Config.WEB_ENABLE:
return
import uvicorn
from pagermaid.web import app, init_web
init_web()
server = uvicorn.Server(config=uvicorn.Config(app, host=Config.WEB_HOST, port=Config.WEB_PORT))
bot.loop.create_task(server.serve())