diff --git a/tldtester/__init__.py b/tldtester/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tldtester/admin.py b/tldtester/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/tldtester/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/tldtester/apps.py b/tldtester/apps.py new file mode 100644 index 0000000..fea4b1a --- /dev/null +++ b/tldtester/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class TldtesterConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = "tldtester" diff --git a/tldtester/migrations/__init__.py b/tldtester/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tldtester/models.py b/tldtester/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/tldtester/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/tldtester/tests.py b/tldtester/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/tldtester/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/tldtester/views.py b/tldtester/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/tldtester/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here.