mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-12-02 17:04:44 +08:00
17 lines
262 B
Python
17 lines
262 B
Python
|
import os
|
||
|
|
||
|
from src.utils.data import LiteModel, SqliteORMDatabase as DB
|
||
|
|
||
|
DATA_PATH = "data/liteyuki"
|
||
|
|
||
|
user_db = DB(os.path.join(DATA_PATH, 'users.ldb'))
|
||
|
|
||
|
|
||
|
class UserModel(LiteModel):
|
||
|
id: str
|
||
|
username: str
|
||
|
lang: str
|
||
|
|
||
|
|
||
|
user_db.auto_migrate(UserModel)
|