You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/main.py
+13-8Lines changed: 13 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -11,8 +11,8 @@
11
11
fromfastapi.responsesimportJSONResponse
12
12
13
13
from .dataimportdata_source
14
-
from .router.v1importrouterasv1router
15
-
from .router.v2importrouterasv2router
14
+
from .router.v1importV1
15
+
from .router.v2importV2
16
16
17
17
# ############
18
18
# FastAPI App
@@ -21,7 +21,10 @@
21
21
22
22
APP=FastAPI(
23
23
title="Coronavirus Tracker",
24
-
description="API for tracking the global coronavirus (COVID-19, SARS-CoV-2) outbreak. Project page: https://github.com/ExpDev07/coronavirus-tracker-api.",
24
+
description=(
25
+
"API for tracking the global coronavirus (COVID-19, SARS-CoV-2) outbreak."
0 commit comments