mirror of
https://github.com/tanrax/org-social-relay
synced 2026-01-10 06:53:33 +01:00
9 lines
154 B
Python
9 lines
154 B
Python
from django.urls import path
|
|
from .views import RepliesView
|
|
|
|
app_name = "replies"
|
|
|
|
urlpatterns = [
|
|
path("", RepliesView.as_view(), name="replies"),
|
|
]
|