mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
10 lines
201 B
Python
10 lines
201 B
Python
from django.apps import AppConfig
|
|
from django.db.utils import OperationalError, ProgrammingError, IntegrityError
|
|
|
|
|
|
class CommonConfig(AppConfig):
|
|
name = 'common'
|
|
|
|
def ready(self):
|
|
pass
|