Null project

This commit is contained in:
2022-10-09 00:19:45 +03:00
parent a9e166cef5
commit a6f61393d1
12 changed files with 218 additions and 0 deletions

0
oknardia/web/__init__.py Normal file
View File

3
oknardia/web/admin.py Normal file
View File

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

6
oknardia/web/apps.py Normal file
View File

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

3
oknardia/web/models.py Normal file
View File

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

3
oknardia/web/tests.py Normal file
View File

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

3
oknardia/web/views.py Normal file
View File

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