mirror of
https://gitlab.com/megazordpobeda/DataRush.git
synced 2026-05-22 23:17:09 +00:00
11 lines
261 B
Python
11 lines
261 B
Python
from django.urls import path
|
|
from health_check.views import MainView
|
|
|
|
from api.v1.router import router as api_v1_router
|
|
|
|
urlpatterns = [
|
|
path("", api_v1_router.urls),
|
|
# Health endpoint
|
|
path("health", MainView.as_view(), name="health_check_home"),
|
|
]
|