blender-studio/stats/urls.py
Francesco Siddi 5e2b845cd1 Add stats app
Display subscribers count over time.
2020-10-25 18:02:05 +01:00

8 lines
125 B
Python

from django.urls.conf import path
from stats.views import index
urlpatterns = [
path('', index, name='stats-index'),
]