使用webp背景图压缩资源包大小

This commit is contained in:
2024-05-12 00:18:53 +08:00
parent afe501a06d
commit f9fe1922d4
54 changed files with 436 additions and 142 deletions

15
db_test.py Normal file
View File

@@ -0,0 +1,15 @@
from liteyuki.internal.base.data import *
class People(LiteModel):
TABLE_NAME: str = "people"
name: str = ""
age: int = 0
sex: str = ""
identity: str = ""
db = Database("data/test/test.ldb")
db.where()