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