funkwhale/api/funkwhale_api/instance/urls_v2.py

8 wiersze
155 B
Python

from django.urls import re_path
from . import views
urlpatterns = [
re_path(r"^nodeinfo/2.1/?$", views.NodeInfo21.as_view(), name="nodeinfo-2.1"),
]