8 lines
142 B
Python
8 lines
142 B
Python
from django.urls import path
|
|
|
|
from ..views.admin import ReactionStatsAPI
|
|
|
|
urlpatterns = [
|
|
path("reaction", ReactionStatsAPI.as_view()),
|
|
]
|