aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/core/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'ctrack/core/urls.py')
-rw-r--r--ctrack/core/urls.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/ctrack/core/urls.py b/ctrack/core/urls.py
new file mode 100644
index 0000000..8f2ca6e
--- /dev/null
+++ b/ctrack/core/urls.py
@@ -0,0 +1,9 @@
+from django.urls import path
+
+from ctrack.core.views import home_page
+
+app_name = "core"
+
+urlpatterns = [
+ path("", home_page, name="home")
+]