add create and get contest list api

This commit is contained in:
virusdefender
2017-01-26 12:33:00 +08:00
parent 681a88ea83
commit 33f8a6c5a3
11 changed files with 66 additions and 16 deletions

0
contest/urls/__init__.py Normal file
View File

7
contest/urls/admin.py Normal file
View File

@@ -0,0 +1,7 @@
from django.conf.urls import url
from ..views.admin import ContestAPI
urlpatterns = [
url(r"^contest", ContestAPI.as_view(), name="contest_api"),
]