8 lines
125 B
Python
8 lines
125 B
Python
from django.urls.conf import path
|
|
|
|
from stats.views import index
|
|
|
|
urlpatterns = [
|
|
path('', index, name='stats-index'),
|
|
]
|