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:
2021-05-23 15:50:45 -07:00
parent fd1ae40dfa
commit 39e6c9685a
6 changed files with 60 additions and 0 deletions

13
app/main.py Normal file
View 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()