mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-30 09:05:10 +08:00
17 lines
260 B
Python
17 lines
260 B
Python
import os
|
|
|
|
from src.utils.data import LiteModel, Database as DB
|
|
|
|
DATA_PATH = "data/liteyuki"
|
|
|
|
user_db = DB(os.path.join(DATA_PATH, 'users.ldb'))
|
|
|
|
|
|
class User(LiteModel):
|
|
user_id: str
|
|
username: str = ""
|
|
lang: str = "en"
|
|
|
|
|
|
user_db.auto_migrate(User)
|