mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-01-06 04:21:51 +00:00
8 lines
173 B
Python
8 lines
173 B
Python
from django.conf.urls import url
|
|
|
|
from ..views.oj import ProblemTagAPI
|
|
|
|
urlpatterns = [
|
|
url(r"^problem/tags/?$", ProblemTagAPI.as_view(), name="problem_tag_list_api")
|
|
]
|