10 lines
155 B
Python
10 lines
155 B
Python
from django.urls import path
|
|
|
|
from .views import StatsHomeView
|
|
|
|
app_name = "stats"
|
|
|
|
urlpatterns = [
|
|
path("", StatsHomeView.as_view(), name="index"),
|
|
]
|