removed department folder from project

This commit is contained in:
Ranjith
2026-07-18 16:17:19 +00:00
parent 9448214727
commit 8a342849cd
15 changed files with 0 additions and 28 deletions

View File

@@ -1,3 +0,0 @@
from django.contrib import admin
# Register your models here.

View File

@@ -1,6 +0,0 @@
from django.apps import AppConfig
class DepartmentsConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'departments'

View File

@@ -1,3 +0,0 @@
from django.db import models
# Create your models here.

View File

@@ -1,3 +0,0 @@
from django.test import TestCase
# Create your tests here.

View File

@@ -1,6 +0,0 @@
from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='departments'),
]

View File

@@ -1,7 +0,0 @@
from django.shortcuts import render
# Create your views here.
from django.http import HttpResponse
def index(request):
return HttpResponse("Departments")