mirror of
https://github.com/openspug/spug.git
synced 2026-01-18 14:54:28 +00:00
8 lines
107 B
Python
8 lines
107 B
Python
from django.urls import path
|
|
|
|
from .views import *
|
|
|
|
urlpatterns = [
|
|
path('', SettingView.as_view()),
|
|
]
|