mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-22 20:23:12 +00:00
14 lines
279 B
Python
14 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)
|