OnlineJudge/problem/urls/oj.py

8 lines
173 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 = [
url(r"^problem/tags/?$", ProblemTagAPI.as_view(), name="problem_tag_list_api")
]