diff --git a/departments/__init__.py b/departments/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/departments/__pycache__/__init__.cpython-310.pyc b/departments/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index e83eecc..0000000 Binary files a/departments/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/departments/__pycache__/admin.cpython-310.pyc b/departments/__pycache__/admin.cpython-310.pyc deleted file mode 100644 index 5bad135..0000000 Binary files a/departments/__pycache__/admin.cpython-310.pyc and /dev/null differ diff --git a/departments/__pycache__/apps.cpython-310.pyc b/departments/__pycache__/apps.cpython-310.pyc deleted file mode 100644 index 83bf409..0000000 Binary files a/departments/__pycache__/apps.cpython-310.pyc and /dev/null differ diff --git a/departments/__pycache__/models.cpython-310.pyc b/departments/__pycache__/models.cpython-310.pyc deleted file mode 100644 index 22d5aff..0000000 Binary files a/departments/__pycache__/models.cpython-310.pyc and /dev/null differ diff --git a/departments/__pycache__/urls.cpython-310.pyc b/departments/__pycache__/urls.cpython-310.pyc deleted file mode 100644 index 8e44f02..0000000 Binary files a/departments/__pycache__/urls.cpython-310.pyc and /dev/null differ diff --git a/departments/__pycache__/views.cpython-310.pyc b/departments/__pycache__/views.cpython-310.pyc deleted file mode 100644 index 54bf4b8..0000000 Binary files a/departments/__pycache__/views.cpython-310.pyc and /dev/null differ diff --git a/departments/admin.py b/departments/admin.py deleted file mode 100644 index 8c38f3f..0000000 --- a/departments/admin.py +++ /dev/null @@ -1,3 +0,0 @@ -from django.contrib import admin - -# Register your models here. diff --git a/departments/apps.py b/departments/apps.py deleted file mode 100644 index 87d1527..0000000 --- a/departments/apps.py +++ /dev/null @@ -1,6 +0,0 @@ -from django.apps import AppConfig - - -class DepartmentsConfig(AppConfig): - default_auto_field = 'django.db.models.BigAutoField' - name = 'departments' diff --git a/departments/migrations/__init__.py b/departments/migrations/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/departments/migrations/__pycache__/__init__.cpython-310.pyc b/departments/migrations/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 376322c..0000000 Binary files a/departments/migrations/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/departments/models.py b/departments/models.py deleted file mode 100644 index 71a8362..0000000 --- a/departments/models.py +++ /dev/null @@ -1,3 +0,0 @@ -from django.db import models - -# Create your models here. diff --git a/departments/tests.py b/departments/tests.py deleted file mode 100644 index 7ce503c..0000000 --- a/departments/tests.py +++ /dev/null @@ -1,3 +0,0 @@ -from django.test import TestCase - -# Create your tests here. diff --git a/departments/urls.py b/departments/urls.py deleted file mode 100644 index b0d8414..0000000 --- a/departments/urls.py +++ /dev/null @@ -1,6 +0,0 @@ -from django.urls import path -from . import views - -urlpatterns = [ - path('', views.index, name='departments'), -] \ No newline at end of file diff --git a/departments/views.py b/departments/views.py deleted file mode 100644 index 699b027..0000000 --- a/departments/views.py +++ /dev/null @@ -1,7 +0,0 @@ -from django.shortcuts import render - -# Create your views here. -from django.http import HttpResponse - -def index(request): - return HttpResponse("Departments")