Files
fastapi-app-template/app/main.py
Ben Davis 39e6c9685a 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
2021-05-23 15:50:45 -07:00

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()