add Seed admin

This commit is contained in:
Nick Sweeting 2024-11-16 02:48:06 -08:00
parent c2add7119c
commit 8cd285e273
No known key found for this signature in database
2 changed files with 78 additions and 2 deletions

View file

@ -0,0 +1,11 @@
__package__ = 'archivebox.seeds'
import abx
@abx.hookimpl
def register_admin(admin_site):
from .admin import register_admin as register_seeds_admin
register_seeds_admin(admin_site)