Add: files app configs
This commit is contained in:
parent
cf4786ce73
commit
efb3df4894
4 changed files with 15 additions and 0 deletions
0
archivist/apps/files/__init__.py
Normal file
0
archivist/apps/files/__init__.py
Normal file
6
archivist/apps/files/apps.py
Normal file
6
archivist/apps/files/apps.py
Normal file
|
@ -0,0 +1,6 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class FilesConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'apps.files'
|
6
archivist/apps/files/config.py
Normal file
6
archivist/apps/files/config.py
Normal file
|
@ -0,0 +1,6 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class MyConfig(AppConfig):
|
||||
name = 'apps.files'
|
||||
label = 'apps_files'
|
3
archivist/apps/files/tests.py
Normal file
3
archivist/apps/files/tests.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
Loading…
Reference in a new issue