10 lines
234 B
Python
10 lines
234 B
Python
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
from django.apps import AppConfig
|
||
|
|
|
||
|
|
|
||
|
|
class PobsyncBackendConfig(AppConfig):
|
||
|
|
default_auto_field = "django.db.models.BigAutoField"
|
||
|
|
name = "pobsync_backend"
|
||
|
|
verbose_name = "Pobsync backend"
|