new app
This commit is contained in:
parent
ae67c793d7
commit
7414af5e77
0
tldtester/__init__.py
Normal file
0
tldtester/__init__.py
Normal file
3
tldtester/admin.py
Normal file
3
tldtester/admin.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
6
tldtester/apps.py
Normal file
6
tldtester/apps.py
Normal file
|
@ -0,0 +1,6 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class TldtesterConfig(AppConfig):
|
||||
default_auto_field = "django.db.models.BigAutoField"
|
||||
name = "tldtester"
|
0
tldtester/migrations/__init__.py
Normal file
0
tldtester/migrations/__init__.py
Normal file
3
tldtester/models.py
Normal file
3
tldtester/models.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.db import models
|
||||
|
||||
# Create your models here.
|
3
tldtester/tests.py
Normal file
3
tldtester/tests.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
3
tldtester/views.py
Normal file
3
tldtester/views.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
Loading…
Reference in a new issue