first commit

This commit is contained in:
2025-02-28 16:29:56 +08:00
commit 0b5426a5d1
16 changed files with 352 additions and 0 deletions

7
account/models.py Normal file
View File

@@ -0,0 +1,7 @@
from django.db import models
# Create your models here.
from django.contrib.auth.models import AbstractUser
class User(AbstractUser):
pass