Files

9 lines
146 B
Python

from django.urls import path
from .views import StatsView
app_name = "stats"
urlpatterns = [
path("", StatsView.as_view(), name="stats"),
]