Skip to content

Commit 93b2a12

Browse files
committed
feat: added the helper path for the routers
Signed-off-by: Kannav02 <[email protected]>
1 parent 9079a98 commit 93b2a12

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

backend/src/api/main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
from fastapi import FastAPI
2-
from .routers import graphs, healthcheck
2+
from .routers import graphs, healthcheck, helpers
33

44
app = FastAPI()
55

66
app.include_router(healthcheck.router)
77
app.include_router(graphs.router)
8+
app.include_router(helpers.router)

0 commit comments

Comments
 (0)