commit 6072072b61d61075d0949baccf9fe8c339056215 Author: Harry Bridge Date: Wed Feb 28 16:09:34 2018 +0000 Initial commit diff --git a/__init__.py b/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/apps.py b/apps.py new file mode 100644 index 00000000..5569d303 --- /dev/null +++ b/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class AssetsConfig(AppConfig): + name = 'assets' diff --git a/tests.py b/tests.py new file mode 100644 index 00000000..7ce503c2 --- /dev/null +++ b/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/views.py b/views.py new file mode 100644 index 00000000..91ea44a2 --- /dev/null +++ b/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here.