6 lines
116 B
Python
6 lines
116 B
Python
from fastapi import FastAPI
|
|
from auth import router as auth_router
|
|
|
|
app = FastAPI()
|
|
|
|
app.include_router(auth_router) |