Init: user app

This commit is contained in:
Aroy-Art 2023-10-21 15:18:07 +02:00
parent 98ded3a1aa
commit 0087bebeac
Signed by: Aroy
GPG key ID: DB9689E9391DD156
7 changed files with 18 additions and 0 deletions

View file

View file

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

View file

@ -0,0 +1,6 @@
from django.apps import AppConfig
class UsersConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'users'

View file

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

View file

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

View file

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