Skip to content
Snippets Groups Projects
main.py 105 B
Newer Older
  • Learn to ignore specific revisions
  • from fastapi import FastAPI
    
    
    def create_app():
        app = FastAPI()
    
        return app
    
    
    app = create_app()