Procházet zdrojové kódy

Adding application

David Leonard před 10 roky
rodič
revize
3434507ab4

+ 0 - 0
hackathon_starter/hackathon/__init__.py


+ 3 - 0
hackathon_starter/hackathon/admin.py

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

+ 0 - 0
hackathon_starter/hackathon/migrations/__init__.py


+ 3 - 0
hackathon_starter/hackathon/models.py

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

+ 3 - 0
hackathon_starter/hackathon/tests.py

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

+ 3 - 0
hackathon_starter/hackathon/views.py

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