Files
mxivideo/python_core/database/material.py
2025-07-12 17:15:24 +08:00

10 lines
152 B
Python

# 素材表
from python_core.kv import kv
from .db import Db
class MaterialDb(Db):
def __init__(self):
self.key = "material"
pass