ArchiveBox/archivebox/plugins/replaywebpage/urls.py
2024-01-19 01:46:48 -08:00

7 lines
No EOL
177 B
Python

from django.urls import path
from .views import ReplayWebPageViewer
urlpatterns = [
path('<path:path>', ReplayWebPageViewer.as_view(), name='plugin_replaywebpage__viewer'),
]