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
13 lines
204 B
Python
13 lines
204 B
Python
from fastapi import FastAPI
|
|
from .logger import logger
|
|
|
|
async def app_builder(**kwargs) -> FastAPI:
|
|
'''
|
|
Create FastAPI app
|
|
'''
|
|
app = FastAPI()
|
|
|
|
|
|
return app
|
|
|
|
app = app_builder() |