Files
org-social-relay/app/boosts/urls.py
Andros Fenollosa aa5f200fb5 Added boosts
2025-11-16 18:41:45 +01:00

9 lines
150 B
Python

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