This commit is contained in:
Arnold Dechamps 2024-02-12 10:36:10 +01:00
parent ae67c793d7
commit 7414af5e77
No known key found for this signature in database
GPG key ID: AE66543374E41C89
7 changed files with 18 additions and 0 deletions

0
tldtester/__init__.py Normal file
View file

3
tldtester/admin.py Normal file
View file

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

6
tldtester/apps.py Normal file
View file

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

View file

3
tldtester/models.py Normal file
View file

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

3
tldtester/tests.py Normal file
View file

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

3
tldtester/views.py Normal file
View file

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