8 lines
193 B
Python
8 lines
193 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class BYOStorageConfig(AppConfig):
|
|
name = 'byostorage'
|
|
verbose_name = 'Bring your own storage'
|
|
default_auto_field = 'django.db.models.AutoField'
|