mxivideo/python_core/database/user.py

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