Skip to content

Commit 09601f2

Browse files
committedMay 25, 2024·
sql project
1 parent ba99f66 commit 09601f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

Diff for: ‎fastapi_project/main.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ def create_application():
2121
if load_sql_project == True:
2222
print("SQL_PROJECT is enabled")
2323
# Include additional routers if LOAD_SQL_PROJECT is enabled
24-
# from fastapi_project.api.v1 import user
25-
# application.include_router(user.router)
24+
from fastapi_project.api.v1 import user
25+
application.include_router(user.router)
2626

2727
# Add CORS middleware
2828
# In production, replace the "*" with the actual frontend URL

0 commit comments

Comments
 (0)
Please sign in to comment.