mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-09-12 19:50:57 +05:00
18 lines
405 B
Python
18 lines
405 B
Python
__package__ = "archivebox.machine"
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class MachineConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
|
|
name = "archivebox.machine"
|
|
label = "machine" # Explicit label for migrations
|
|
verbose_name = "Machine Info"
|
|
|
|
|
|
def register_admin(admin_site):
|
|
from archivebox.machine.admin import register_admin
|
|
|
|
register_admin(admin_site)
|