mirror of
https://github.com/ngfchl/ptools
synced 2023-07-10 13:41:22 +08:00
8 lines
134 B
Python
8 lines
134 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path(r'test_import', views.test_import, name='test_import'),
|
|
]
|