diff options
Diffstat (limited to '')
-rw-r--r-- | pyblackbird_cc/resources/__init__.py | 0 | ||||
-rw-r--r-- | pyblackbird_cc/resources/admin.py | 1 | ||||
-rw-r--r-- | pyblackbird_cc/resources/apps.py | 6 | ||||
-rw-r--r-- | pyblackbird_cc/resources/migrations/__init__.py | 0 | ||||
-rw-r--r-- | pyblackbird_cc/resources/models.py | 1 | ||||
-rw-r--r-- | pyblackbird_cc/resources/tests.py | 1 | ||||
-rw-r--r-- | pyblackbird_cc/resources/views.py | 1 |
7 files changed, 10 insertions, 0 deletions
diff --git a/pyblackbird_cc/resources/__init__.py b/pyblackbird_cc/resources/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/pyblackbird_cc/resources/__init__.py 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 --- /dev/null +++ b/pyblackbird_cc/resources/migrations/__init__.py 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. |