11 lines
352 B
Python
11 lines
352 B
Python
from django.urls import path
|
|
from .views import HelloView
|
|
from . import views
|
|
|
|
app_name = 'api'
|
|
urlpatterns = [
|
|
path('helloview/', HelloView.as_view(), name='api-helloview'),
|
|
path('getstandards/', views.getStandardList, name='api-getstandards'),
|
|
path('getsinglestandard/<int:pk>', views.getSingleStandard, name='api-getsinglestandards'),
|
|
|
|
] |