16 lines
267 B
Python
16 lines
267 B
Python
|
|
# -*- coding: utf-8 -*-
|
||
|
|
"""``python -m app`` 快捷启动。"""
|
||
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
import uvicorn
|
||
|
|
|
||
|
|
from . import config
|
||
|
|
|
||
|
|
|
||
|
|
def main() -> None:
|
||
|
|
uvicorn.run("app.main:app", host=config.HOST, port=config.PORT)
|
||
|
|
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
main()
|