djangonix/test_assets/urls.py

10 lines
226 B
Python
Raw Normal View History

2024-06-09 14:39:18 +02:00
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),
]