1
0
Fork 0
mirror of synced 2024-07-16 11:46:03 +12:00
ArchiveBox/archivebox/plugins/replaywebpage/urls.py

7 lines
177 B
Python
Raw Normal View History

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