Files
Andros Fenollosa 1afb02eae7 Updated HATEOUS
2025-09-23 18:37:55 +02:00

9 lines
158 B
Python

from django.urls import path
from .views import MentionsView
app_name = "mentions"
urlpatterns = [
path("", MentionsView.as_view(), name="mentions"),
]