mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-09-26 23:09:21 +08:00
8 lines
160 B
Python
8 lines
160 B
Python
from django.conf.urls import url
|
|
|
|
from ..views import ProblemTagAPI
|
|
|
|
urlpatterns = [
|
|
url(r"^tags$", ProblemTagAPI.as_view(), name="problem_tag_list_api")
|
|
]
|