All checks were successful
Deploy Beta (NATIVE) / deploy (push) Successful in 38s
12 lines
313 B
Python
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')),
|
|
]
|