Start payments app

This commit is contained in:
Kumi 2021-03-01 09:58:08 +00:00
parent e8af9a90a1
commit b31ebc4818
6 changed files with 17 additions and 0 deletions

0
payments/__init__.py Normal file
View file

3
payments/admin.py Normal file
View file

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

5
payments/apps.py Normal file
View file

@ -0,0 +1,5 @@
from django.apps import AppConfig
class PaymentsConfig(AppConfig):
name = 'payments'

3
payments/models.py Normal file
View file

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

3
payments/tests.py Normal file
View file

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

3
payments/views.py Normal file
View file

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