kaeizen commited on
Commit
0779a71
·
1 Parent(s): e4ae336

add root view

Browse files
Files changed (1) hide show
  1. backend/urls.py +2 -1
backend/urls.py CHANGED
@@ -16,10 +16,11 @@ Including another URLconf
16
  """
17
  from django.contrib import admin
18
  from django.urls import path, include
19
- from api.views import handler404
20
 
21
  urlpatterns = [
22
  # path('admin/', admin.site.urls),
 
23
  path('api/v1/', include('api.urls')),
24
  ]
25
 
 
16
  """
17
  from django.contrib import admin
18
  from django.urls import path, include
19
+ from api.views import handler404, hello
20
 
21
  urlpatterns = [
22
  # path('admin/', admin.site.urls),
23
+ path('', hello),
24
  path('api/v1/', include('api.urls')),
25
  ]
26