Changes to be committed:
modified: README.md new file: app/logger.py new file: app/main.py new file: configs/app.json new file: configs/logger.ini new file: run.py
This commit is contained in:
13
app/main.py
Normal file
13
app/main.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from fastapi import FastAPI
|
||||
from .logger import logger
|
||||
|
||||
async def app_builder(**kwargs) -> FastAPI:
|
||||
'''
|
||||
Create FastAPI app
|
||||
'''
|
||||
app = FastAPI()
|
||||
|
||||
|
||||
return app
|
||||
|
||||
app = app_builder()
|
||||
Reference in New Issue
Block a user