from django.urls import path from .api import AtollListView urlpatterns = [ path("atolls/", AtollListView.as_view(), name="atoll-list"), ]