7 lines
174 B
Python
7 lines
174 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.home, name='home'),
|
|
path('api/services/', views.get_services, name='get_services'),
|
|
] |