created app startScan

This commit is contained in:
Yogesh Ojha
2020-05-13 19:36:57 +05:30
parent 429258e24b
commit ae82fcd354
8 changed files with 22 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
from django.contrib import admin
from .models import EngineType
# Register your models here.
admin.site.register(EngineType)
View File
+3
View File
@@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.
+5
View File
@@ -0,0 +1,5 @@
from django.apps import AppConfig
class StartscanConfig(AppConfig):
name = 'startScan'
View File
+3
View File
@@ -0,0 +1,3 @@
from django.db import models
# Create your models here.
+3
View File
@@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.
+3
View File
@@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.