mirror of
https://github.com/tanrax/org-social-relay
synced 2026-01-09 22:53:32 +01:00
9 lines
174 B
Python
9 lines
174 B
Python
from django.urls import path
|
|
from .views import InteractionsView
|
|
|
|
app_name = "interactions"
|
|
|
|
urlpatterns = [
|
|
path("", InteractionsView.as_view(), name="interactions"),
|
|
]
|