1
0
Fork 0
mirror of synced 2024-09-19 18:58:41 +12:00
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'),
]