aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/urls.py
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2018-08-13 22:45:44 +0200
committerGravatar Johannes Christ <[email protected]>2018-08-13 22:45:44 +0200
commite740bccbee40ef136da80b52a2688c1e72528f8f (patch)
tree2d15c5e4107a1ceca63374cd05e32659a83adbf9 /pysite/urls.py
parentAdd the `home` app. (diff)
Add regular URLconf.
Diffstat (limited to 'pysite/urls.py')
-rw-r--r--pysite/urls.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/pysite/urls.py b/pysite/urls.py
new file mode 100644
index 00000000..0755f2ad
--- /dev/null
+++ b/pysite/urls.py
@@ -0,0 +1,6 @@
+from django.urls import include, path
+
+
+urlpatterns = [
+ path("", include("home.urls", namespace="home"))
+]