diff --git a/archivist/apps/files/__init__.py b/archivist/apps/files/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/archivist/apps/files/apps.py b/archivist/apps/files/apps.py new file mode 100644 index 0000000..88b6b55 --- /dev/null +++ b/archivist/apps/files/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class FilesConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'apps.files' diff --git a/archivist/apps/files/config.py b/archivist/apps/files/config.py new file mode 100644 index 0000000..a5b487c --- /dev/null +++ b/archivist/apps/files/config.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class MyConfig(AppConfig): + name = 'apps.files' + label = 'apps_files' \ No newline at end of file diff --git a/archivist/apps/files/tests.py b/archivist/apps/files/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/archivist/apps/files/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here.