Files
sandboxMP/apps/system/urls.py
2018-10-17 23:27:14 +08:00

10 lines
150 B
Python

from django.urls import path
from .views import SystemView
app_name = 'system'
urlpatterns = [
path('', SystemView.as_view(), name='login'),
]