mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-01-08 20:05:49 +10:00
7 lines
177 B
Python
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'),
|
|
] |