Spaces:
Sleeping
Sleeping
| from fastapi import FastAPI | |
| from routes import users | |
| app = FastAPI() | |
| # Register the user routes | |
| app.include_router(users.router) | |
| def read_root(): | |
| return {"message": "User Management System with JWT and Firebase is running"} | |