1
1
Fork 0
novelmetrix-python/ras/api/urls.py

7 lines
164 B
Python
Raw Normal View History

2022-09-05 15:53:48 +02:00
from django.urls import path
from .views import *
urlpatterns = [
2022-09-29 16:18:35 +02:00
path('books/genres', books_per_genre_per_month),
path('ratings', avg_ratings_per_month)
2022-09-05 15:53:48 +02:00
]