diff options
| author | spl3g <spleefer6@gmail.com> | 2026-05-28 18:55:00 +0300 |
|---|---|---|
| committer | spl3g <spleefer6@gmail.com> | 2026-05-29 21:18:21 +0300 |
| commit | 9a7ca8a6cbab866d6ce6b1eb12e5977f7f2a9367 (patch) | |
| tree | fd7fc37559f8cb35d7a4ad90cefb3231699baac2 /core | |
init
Diffstat (limited to 'core')
| -rw-r--r-- | core/__init__.py | 0 | ||||
| -rw-r--r-- | core/admin.py | 3 | ||||
| -rw-r--r-- | core/apps.py | 5 | ||||
| -rw-r--r-- | core/migrations/__init__.py | 0 | ||||
| -rw-r--r-- | core/models.py | 3 | ||||
| -rw-r--r-- | core/tests.py | 3 | ||||
| -rw-r--r-- | core/views.py | 3 |
7 files changed, 17 insertions, 0 deletions
diff --git a/core/__init__.py b/core/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/core/__init__.py diff --git a/core/admin.py b/core/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/core/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/core/apps.py b/core/apps.py new file mode 100644 index 0000000..26f78a8 --- /dev/null +++ b/core/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class CoreConfig(AppConfig): + name = 'core' diff --git a/core/migrations/__init__.py b/core/migrations/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/core/migrations/__init__.py diff --git a/core/models.py b/core/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/core/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/core/tests.py b/core/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/core/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/core/views.py b/core/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/core/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. |
