добавил backend

This commit is contained in:
KessPen
2024-02-01 14:09:30 +07:00
parent d6b97c2ccb
commit 63e82d4de9
8 changed files with 19 additions and 0 deletions

View File

View File

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

6
SusMarketBackend/apps.py Normal file
View File

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

View File

View File

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

View File

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

View File

@@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.