7 lines
151 B
Python
7 lines
151 B
Python
import uvicorn
|
|
|
|
from app.config import config
|
|
from app import app
|
|
|
|
if __name__ == '__main__':
|
|
uvicorn.run(app, host=config.host, port=config.port)
|