mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2025-01-16 17:26:38 +00:00
10 lines
145 B
Python
10 lines
145 B
Python
# coding=utf-8
|
|
from django.conf.urls import include, url
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^paginate_test/$', "utils.tests.pagination_test_func"),
|
|
]
|
|
|