diff --git a/printer/__init__.py b/printer/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/printer/admin.py b/printer/admin.py new file mode 100644 index 00000000..8c38f3f3 --- /dev/null +++ b/printer/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/printer/apps.py b/printer/apps.py new file mode 100644 index 00000000..62de6453 --- /dev/null +++ b/printer/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class PrinterConfig(AppConfig): + name = 'printer' diff --git a/printer/migrations/__init__.py b/printer/migrations/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/printer/models.py b/printer/models.py new file mode 100644 index 00000000..71a83623 --- /dev/null +++ b/printer/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/printer/tests.py b/printer/tests.py new file mode 100644 index 00000000..7ce503c2 --- /dev/null +++ b/printer/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/printer/urls.py b/printer/urls.py new file mode 100644 index 00000000..5dcec9cd --- /dev/null +++ b/printer/urls.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +urlpatterns = [] diff --git a/printer/views.py b/printer/views.py new file mode 100644 index 00000000..91ea44a2 --- /dev/null +++ b/printer/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here.