Files
NoN-Site/nonpacks/landing/urls.py
T
2026-08-03 10:39:19 -05:00

10 lines
173 B
Python

from django.urls import path
from . import views
app_name = 'landing'
urlpatterns = [
path('', views.gate, name='gate'),
path('home/', views.home, name='home'),
]