diff --git a/scanEngine/admin.py b/scanEngine/admin.py new file mode 100644 index 00000000..13aa82bb --- /dev/null +++ b/scanEngine/admin.py @@ -0,0 +1,5 @@ +from django.contrib import admin +from .models import EngineType + +# Register your models here. +admin.site.register(EngineType) diff --git a/startScan/__init__.py b/startScan/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/startScan/admin.py b/startScan/admin.py new file mode 100644 index 00000000..8c38f3f3 --- /dev/null +++ b/startScan/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/startScan/apps.py b/startScan/apps.py new file mode 100644 index 00000000..e0cd9b04 --- /dev/null +++ b/startScan/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class StartscanConfig(AppConfig): + name = 'startScan' diff --git a/startScan/migrations/__init__.py b/startScan/migrations/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/startScan/models.py b/startScan/models.py new file mode 100644 index 00000000..71a83623 --- /dev/null +++ b/startScan/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/startScan/tests.py b/startScan/tests.py new file mode 100644 index 00000000..7ce503c2 --- /dev/null +++ b/startScan/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/startScan/views.py b/startScan/views.py new file mode 100644 index 00000000..91ea44a2 --- /dev/null +++ b/startScan/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here.