Skip to content

Commit

Permalink
fixed urls.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jaeeyoungkim committed Mar 10, 2024
1 parent f3f6d8f commit 0ee1933
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/django/whatap_tutorial/tutorial_app/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

urlpatterns = [
path("", views.home, name="home"),
path("health_check/", views.health_check, name="health_check"),
path("active_stack_check/", views.active_stack_check, name="active_stack_check"),
path("error_check/", views.error_check, name="error_check")
path("health_check", views.health_check, name="health_check"),
path("active_stack_check", views.active_stack_check, name="active_stack_check"),
path("error_check", views.error_check, name="error_check")
]

0 comments on commit 0ee1933

Please sign in to comment.