from fastapi import FastAPI from .logger import logger async def app_builder(**kwargs) -> FastAPI: ''' Create FastAPI app ''' app = FastAPI() return app app = app_builder()