from __future__ import annotations

from django.urls import path

from simorgh.apps.schema.platform_views import (
    PlatformSchemaDetailView,
    PlatformSchemaListView,
)

app_name = "platform_schemas"

urlpatterns = [
    path("", PlatformSchemaListView.as_view(), name="list"),
    path("<str:name>/", PlatformSchemaDetailView.as_view(), name="detail"),
]
