academon/api/urls.py

9 lines
188 B
Python
Raw Normal View History

2022-09-16 12:51:56 +00:00
from django.urls import path, include
from .views.urls import VesselsDataTableURLView
2022-09-16 12:51:56 +00:00
urlpatterns = [
path("urls/datatable/vessels/", VesselsDataTableURLView.as_view(), name=""),
2022-09-16 12:51:56 +00:00
]