crmbackend/digihoxbackend/urls.py
vickytechkey 05e1a1a149
All checks were successful
Deploy Beta (NATIVE) / deploy (push) Successful in 38s
initial commit
2026-08-15 19:22:16 +05:30

12 lines
313 B
Python

from django.contrib import admin
from django.urls import path, include
from django.http import HttpResponse
def home_view(request):
return HttpResponse("crm api running")
urlpatterns = [
path('', home_view, name='home'),
path('admin/', admin.site.urls),
path('api/crm/', include('crm.urls')),
]