mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-13 14:44:29 -04:00
7 lines
No EOL
177 B
Python
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'),
|
|
] |