mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-01-04 01:46:54 +10:00
15 lines
279 B
Python
15 lines
279 B
Python
from django.apps import AppConfig
|
|
|
|
import abx
|
|
|
|
|
|
class QueuesConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'queues'
|
|
|
|
|
|
@abx.hookimpl
|
|
def register_admin(admin_site):
|
|
from queues.admin import register_admin
|
|
register_admin(admin_site)
|