Browse Source

Add Init Files

root 8 years ago
parent
commit
5639fa24f6
5 changed files with 12 additions and 0 deletions
  1. 0 0
      __init__.py
  2. 3 0
      admin.py
  3. 3 0
      models.py
  4. 3 0
      tests.py
  5. 3 0
      views.py

+ 0 - 0
__init__.py


+ 3 - 0
admin.py

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

+ 3 - 0
models.py

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

+ 3 - 0
tests.py

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

+ 3 - 0
views.py

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