djangonix/test_assets/urls.py
2024-06-09 15:20:20 +02:00

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),
]