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