Files
mxivideo/python_core/database/user.py
2025-07-12 18:01:17 +08:00

8 lines
143 B
Python

# 用户表
from python_core.kv import kv
from .db import Db
class UserDb(Db):
def __init__(self):
self.key = "model"
pass