Skip to content

Commit 9b8683b

Browse files
committed
Remove core application files and refactor project structure
- Deleted core application files including models, views, serializers, and permissions to streamline the project. - Updated project structure to use 'apps.core' for better organization and maintainability. - Removed obsolete migrations and tests related to the core application. - Adjusted settings and URL configurations to reflect the new application structure.
1 parent 457230b commit 9b8683b

19 files changed

Lines changed: 10 additions & 10 deletions
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
class CoreConfig(AppConfig):
55
default_auto_field = 'django.db.models.BigAutoField'
6-
name = 'core'
6+
name = 'apps.core'
77

88
def ready(self):
9-
import core.signals # noqa F401: Import signals to connect them
9+
import apps.core.signals # noqa F401: Import signals to connect them
File renamed without changes.

0 commit comments

Comments
 (0)