mirror of
https://github.com/RobbieHan/sandboxMP.git
synced 2026-02-11 14:44:55 +08:00
10 lines
150 B
Python
10 lines
150 B
Python
from django.urls import path
|
|
|
|
from .views import SystemView
|
|
|
|
app_name = 'system'
|
|
|
|
urlpatterns = [
|
|
path('', SystemView.as_view(), name='login'),
|
|
]
|