Files
mxivideo/python_core/database/db.py
2025-07-12 17:07:14 +08:00

10 lines
146 B
Python

from python_core.kv import kv
class Db:
def __init__(self, key: str):
self.kv = kv
self.key = key
pass