8 lines
282 B
Python
8 lines
282 B
Python
from django.urls import path
|
|
from .views import GaiaSourceListCreate, GaiaSourceDetail
|
|
|
|
urlpatterns = [
|
|
path('GaiaSource/', GaiaSourceListCreate.as_view(), name='GaiaSource-list-create'),
|
|
path('GaiaSource/<int:pk>/', GaiaSourceDetail.as_view(), name='GaiaSource-detail'),
|
|
]
|