fix: 添加auth功能

This commit is contained in:
root
2025-07-12 18:01:17 +08:00
parent 41363d182e
commit e4d4677f3a
12 changed files with 1725 additions and 91 deletions

View File

@@ -0,0 +1,8 @@
# 用户表
from python_core.kv import kv
from .db import Db
class UserDb(Db):
def __init__(self):
self.key = "model"
pass