OnlineJudge/problem/urls/oj.py
2017-01-25 16:29:00 +08:00

8 lines
163 B
Python

from django.conf.urls import url
from ..views.oj import ProblemTagAPI
urlpatterns = [
url(r"^tags$", ProblemTagAPI.as_view(), name="problem_tag_list_api")
]