1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/project/college/urls.py

8 lines
170 B
Python
Raw Normal View History

2015-10-19 13:04:49 +01:00
from django.conf.urls import url
from .views import StudentServerView
urlpatterns = [
url(r'^student-server', StudentServerView.as_view(), name='student-server')
]