aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/core/urls.py
blob: 8f2ca6e414abc0594c12f7d68fa5fef9222cc948 (plain) (blame)
1
2
3
4
5
6
7
8
9
from django.urls import path

from ctrack.core.views import home_page

app_name = "core"

urlpatterns = [
    path("", home_page, name="home")
]