diff options
| author | fschildt <florian.schildt@protonmail.com> | 2025-10-17 14:00:16 +0200 |
|---|---|---|
| committer | fschildt <florian.schildt@protonmail.com> | 2025-10-17 14:00:16 +0200 |
| commit | d1e59579ca19454369d56a8c7525e109a86841e2 (patch) | |
| tree | 695f348acca3a32c97512685384da818a3ba5195 /apps/home/urls.py | |
first commit
Diffstat (limited to 'apps/home/urls.py')
| -rw-r--r-- | apps/home/urls.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/home/urls.py b/apps/home/urls.py new file mode 100644 index 0000000..5119061 --- /dev/null +++ b/apps/home/urls.py @@ -0,0 +1,7 @@ +from django.urls import path + +from . import views + +urlpatterns = [ + path("", views.index, name="index"), +] |
