8 lines
145 B
Python
8 lines
145 B
Python
from django.urls import path
|
|
|
|
from .api import AtollListView
|
|
|
|
urlpatterns = [
|
|
path("atolls/", AtollListView.as_view(), name="atoll-list"),
|
|
]
|