mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 21:10:38 +03:00
9 lines
214 B
Python
9 lines
214 B
Python
''' Application: Operation Schema. '''
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class OssConfig(AppConfig):
|
|
''' Application config. '''
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.oss'
|