From efbbd480ddc62e695123d31c31d233b0df5155bd Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Mon, 13 May 2024 17:26:25 +0100 Subject: After first pre-commit processing --- pyblackbird_cc/resources/__init__.py | 0 pyblackbird_cc/resources/admin.py | 1 + pyblackbird_cc/resources/apps.py | 6 ++++++ pyblackbird_cc/resources/migrations/__init__.py | 0 pyblackbird_cc/resources/models.py | 1 + pyblackbird_cc/resources/tests.py | 1 + pyblackbird_cc/resources/views.py | 1 + 7 files changed, 10 insertions(+) create mode 100644 pyblackbird_cc/resources/__init__.py create mode 100644 pyblackbird_cc/resources/admin.py create mode 100644 pyblackbird_cc/resources/apps.py create mode 100644 pyblackbird_cc/resources/migrations/__init__.py create mode 100644 pyblackbird_cc/resources/models.py create mode 100644 pyblackbird_cc/resources/tests.py create mode 100644 pyblackbird_cc/resources/views.py (limited to 'pyblackbird_cc/resources') diff --git a/pyblackbird_cc/resources/__init__.py b/pyblackbird_cc/resources/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/pyblackbird_cc/resources/admin.py b/pyblackbird_cc/resources/admin.py new file mode 100644 index 0000000..846f6b4 --- /dev/null +++ b/pyblackbird_cc/resources/admin.py @@ -0,0 +1 @@ +# Register your models here. diff --git a/pyblackbird_cc/resources/apps.py b/pyblackbird_cc/resources/apps.py new file mode 100644 index 0000000..2756fc0 --- /dev/null +++ b/pyblackbird_cc/resources/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class ResourcesConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = "pyblackbird_cc.resources" diff --git a/pyblackbird_cc/resources/migrations/__init__.py b/pyblackbird_cc/resources/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/pyblackbird_cc/resources/models.py b/pyblackbird_cc/resources/models.py new file mode 100644 index 0000000..6b20219 --- /dev/null +++ b/pyblackbird_cc/resources/models.py @@ -0,0 +1 @@ +# Create your models here. diff --git a/pyblackbird_cc/resources/tests.py b/pyblackbird_cc/resources/tests.py new file mode 100644 index 0000000..a39b155 --- /dev/null +++ b/pyblackbird_cc/resources/tests.py @@ -0,0 +1 @@ +# Create your tests here. diff --git a/pyblackbird_cc/resources/views.py b/pyblackbird_cc/resources/views.py new file mode 100644 index 0000000..60f00ef --- /dev/null +++ b/pyblackbird_cc/resources/views.py @@ -0,0 +1 @@ +# Create your views here. -- cgit v1.2.3