7 lines
170 B
Python
7 lines
170 B
Python
from django.conf.urls import url
|
|
from .views import StudentServerView
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^student-server', StudentServerView.as_view(), name='student-server')
|
|
]
|