10 lines
150 B
Python
10 lines
150 B
Python
from fastapi import FastAPI
|
|
|
|
|
|
def create_app() -> FastAPI:
|
|
app = FastAPI(title="Live In-Lecture Quiz Portal")
|
|
return app
|
|
|
|
|
|
app = create_app()
|