1
0
Fork 0
mirror of synced 2024-07-07 23:35:50 +12:00
ArchiveBox/archivebox/plugins/replaywebpage/urls.py
2024-01-17 05:14:43 -08:00

7 lines
177 B
Python

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