1
0
mirror of synced 2025-12-28 07:23:24 +00:00
This commit is contained in:
Valentin
2023-11-15 10:48:50 +01:00
parent 13e460423b
commit 5ff43ae722
13 changed files with 25 additions and 7 deletions

0
server/__init__.py Normal file
View File

3
server/admin.py Normal file
View File

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

6
server/apps.py Normal file
View File

@@ -0,0 +1,6 @@
from django.apps import AppConfig
class ServerConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "server"

View File

3
server/models.py Normal file
View File

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

3
server/tests.py Normal file
View File

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

3
server/views.py Normal file
View File

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