8 lines
199 B
Python
8 lines
199 B
Python
from django.urls import path
|
|
from ..views.oj import TutorialAPI, TutorialTitlesAPI
|
|
|
|
urlpatterns = [
|
|
path("tutorial", TutorialAPI.as_view()),
|
|
path("tutorials", TutorialTitlesAPI.as_view()),
|
|
]
|