18 lines
606 B
Python
18 lines
606 B
Python
from django.contrib import admin
|
|
from django.urls import include, path
|
|
|
|
from apps.common.views import health_check
|
|
|
|
|
|
urlpatterns = [
|
|
path("admin/", admin.site.urls),
|
|
path("api/health/", health_check, name="health-check"),
|
|
path("api/auth/", include("apps.accounts.urls")),
|
|
path("api/products/", include("apps.products.urls")),
|
|
path("api/assets/", include("apps.assets.urls")),
|
|
path("api/projects/", include("apps.projects.urls")),
|
|
path("api/billing/", include("apps.billing.urls")),
|
|
path("api/ai/", include("apps.ai.urls")),
|
|
path("api/ops/", include("apps.ops.urls")),
|
|
]
|