Moibe commited on
Commit
2fe7d33
·
1 Parent(s): 95ca478

Orden endpoints

Browse files
Files changed (1) hide show
  1. app/main.py +3 -2
app/main.py CHANGED
@@ -8,9 +8,10 @@ app = FastAPI(
8
  version="0.1.0",
9
  )
10
 
11
- app.include_router(router)
12
-
13
 
14
  @app.get("/health")
15
  async def health():
16
  return {"status": "ok"}
 
 
 
 
8
  version="0.1.0",
9
  )
10
 
 
 
11
 
12
  @app.get("/health")
13
  async def health():
14
  return {"status": "ok"}
15
+
16
+
17
+ app.include_router(router)