Salim Elliye 3 days ago
parent 90cb69a1ec
commit 9073ec9f68

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

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

@ -0,0 +1,10 @@
from django.db import models
import uuid
# Create your models here.
class BaseModel(models.Model):
uuid = models.UUIDField(default=uuid.uuid4, editable=False)
created_at = models.DateTimeField(auto_now_add=True, null=True)
class Meta:
abstract = True

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

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

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save