Mosqkiller-API/apps/mosquito/api/urls.py

8 lines
175 B
Python

from django.urls import path, re_path
from .views import MosquitoListAPIView
app_name = 'mosq-api'
urlpatterns = [
path('', MosquitoListAPIView.as_view(), name='list')
]