9 lines
226 B
Python
9 lines
226 B
Python
from django.urls import path
|
|
|
|
from .views import test_json, test_secrets, test_settings
|
|
|
|
urlpatterns = [
|
|
path("test_settings/", test_settings),
|
|
path("test_secrets/", test_secrets),
|
|
path("test_json/", test_json),
|
|
]
|