Browse Source

detect_app追加

master
first_user 4 years ago
parent
commit
e63d7aed33
  1. 0
      detect_app/__init__.py
  2. 3
      detect_app/admin.py
  3. 5
      detect_app/apps.py
  4. 0
      detect_app/migrations/__init__.py
  5. 3
      detect_app/models.py
  6. 3
      detect_app/tests.py
  7. 3
      detect_app/views.py

0
detect_app/__init__.py

3
detect_app/admin.py

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

5
detect_app/apps.py

@ -0,0 +1,5 @@
from django.apps import AppConfig
class DetectAppConfig(AppConfig):
name = 'detect_app'

0
detect_app/migrations/__init__.py

3
detect_app/models.py

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

3
detect_app/tests.py

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

3
detect_app/views.py

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