diff --git a/accounting/__init__.py b/accounting/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/accounting/admin.py b/accounting/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/accounting/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/accounting/apps.py b/accounting/apps.py new file mode 100644 index 0000000..bbcd3d0 --- /dev/null +++ b/accounting/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class AccountingConfig(AppConfig): + name = 'accounting' diff --git a/accounting/migrations/__init__.py b/accounting/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/accounting/models.py b/accounting/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/accounting/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/accounting/tests.py b/accounting/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/accounting/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/accounting/views.py b/accounting/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/accounting/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here.