initial commit

This commit is contained in:
2025-04-29 18:09:00 +08:00
commit 4faed52de5
690 changed files with 13481 additions and 0 deletions

6
apps/user/admin.py Normal file
View File

@@ -0,0 +1,6 @@
from django.contrib import admin
from apps.user.models import Users
# 在这里将数据库表注册到admin中
admin.site.register([Users])