This commit is contained in:
2026-02-02 16:23:26 +07:00
parent 3774758813
commit 62e53fac1b
15 changed files with 210 additions and 0 deletions

0
app1/__init__.py Normal file
View File

3
app1/admin.py Normal file
View File

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

5
app1/apps.py Normal file
View File

@@ -0,0 +1,5 @@
from django.apps import AppConfig
class App1Config(AppConfig):
name = 'app1'

View File

3
app1/models.py Normal file
View File

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

3
app1/tests.py Normal file
View File

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

3
app1/views.py Normal file
View File

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