From e63d7aed33ccd8a7ef622d040a4097f9a01c2db1 Mon Sep 17 00:00:00 2001 From: first_user Date: Sat, 8 Feb 2020 10:58:55 +0900 Subject: [PATCH] =?UTF-8?q?detect=5Fapp=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- detect_app/__init__.py | 0 detect_app/admin.py | 3 +++ detect_app/apps.py | 5 +++++ detect_app/migrations/__init__.py | 0 detect_app/models.py | 3 +++ detect_app/tests.py | 3 +++ detect_app/views.py | 3 +++ 7 files changed, 17 insertions(+) create mode 100644 detect_app/__init__.py create mode 100644 detect_app/admin.py create mode 100644 detect_app/apps.py create mode 100644 detect_app/migrations/__init__.py create mode 100644 detect_app/models.py create mode 100644 detect_app/tests.py create mode 100644 detect_app/views.py diff --git a/detect_app/__init__.py b/detect_app/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/detect_app/admin.py b/detect_app/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/detect_app/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/detect_app/apps.py b/detect_app/apps.py new file mode 100644 index 0000000..89cb6b2 --- /dev/null +++ b/detect_app/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class DetectAppConfig(AppConfig): + name = 'detect_app' diff --git a/detect_app/migrations/__init__.py b/detect_app/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/detect_app/models.py b/detect_app/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/detect_app/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/detect_app/tests.py b/detect_app/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/detect_app/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/detect_app/views.py b/detect_app/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/detect_app/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here.