BuyAndKnow/bk_api/bills/urls.py

10 lines
242 B
Python
Raw Permalink Normal View History

2020-01-27 14:46:28 +01:00
from django.urls import path
from .views import general_stats_view, shops_stats_view, products_stats_view
urlpatterns = [
path('', general_stats_view),
path('shops/', shops_stats_view),
path('products/', products_stats_view),
]