Update app.py
Browse files
app.py
CHANGED
|
@@ -2,6 +2,7 @@ from fastapi import FastAPI
|
|
| 2 |
from routes.hello import router as hello_router
|
| 3 |
from routes.subscription import router as subscription_router
|
| 4 |
from routes.stylist import router as stylist_router
|
|
|
|
| 5 |
|
| 6 |
app = FastAPI()
|
| 7 |
|
|
@@ -9,6 +10,7 @@ app = FastAPI()
|
|
| 9 |
app.include_router(hello_router)
|
| 10 |
app.include_router(subscription_router)
|
| 11 |
app.include_router(stylist_router)
|
|
|
|
| 12 |
|
| 13 |
@app.get("/")
|
| 14 |
def root():
|
|
|
|
| 2 |
from routes.hello import router as hello_router
|
| 3 |
from routes.subscription import router as subscription_router
|
| 4 |
from routes.stylist import router as stylist_router
|
| 5 |
+
from routes.dashboard_home import router as dashboard_home_router
|
| 6 |
|
| 7 |
app = FastAPI()
|
| 8 |
|
|
|
|
| 10 |
app.include_router(hello_router)
|
| 11 |
app.include_router(subscription_router)
|
| 12 |
app.include_router(stylist_router)
|
| 13 |
+
app.include_router(dashboard_home_router)
|
| 14 |
|
| 15 |
@app.get("/")
|
| 16 |
def root():
|