You've already forked Promocode-API
mirror of
https://github.com/devitq/Promocode-API.git
synced 2026-05-22 23:17:10 +00:00
init: initialized project struct
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
from django.urls import path
|
||||
from health_check.views import MainView
|
||||
|
||||
from api.v1.router import router as api_v1_router
|
||||
|
||||
urlpatterns = [
|
||||
path("v1/", api_v1_router.urls),
|
||||
# Health endpoint
|
||||
path("health", MainView.as_view(), name="health_check_home"),
|
||||
]
|
||||
Reference in New Issue
Block a user