OnlineJudge/problem/urls/oj.py

8 lines
171 B
Python
Raw Normal View History

from django.conf.urls import url
2017-01-25 08:29:00 +00:00
from ..views.oj import ProblemTagAPI
urlpatterns = [
2017-02-02 08:59:15 +00:00
url(r"^problem/tags$", ProblemTagAPI.as_view(), name="problem_tag_list_api")
]