urls.py 177 B

1234567
  1. from django.urls import path
  2. from .views import ReplayWebPageViewer
  3. urlpatterns = [
  4. path('<path:path>', ReplayWebPageViewer.as_view(), name='plugin_replaywebpage__viewer'),
  5. ]