mirror of
https://github.com/TheSmallHanCat/flow2api.git
synced 2026-05-06 14:00:50 +08:00
14 lines
276 B
Python
14 lines
276 B
Python
"""Flow2API - Main Entry Point"""
|
|
from src.main import app
|
|
import uvicorn
|
|
|
|
if __name__ == "__main__":
|
|
from src.core.config import config
|
|
|
|
uvicorn.run(
|
|
"src.main:app",
|
|
host=config.server_host,
|
|
port=config.server_port,
|
|
reload=False
|
|
)
|