age-better / main.py
Abineshkumar
Add application file
51ac0e6
raw
history blame contribute delete
245 Bytes
from fastapi import FastAPI
from routes import users
app = FastAPI()
# Register the user routes
app.include_router(users.router)
@app.get("/")
def read_root():
return {"message": "User Management System with JWT and Firebase is running"}