mirror of
https://github.com/PaiGramTeam/genshin-wiki.git
synced 2024-11-22 07:07:40 +00:00
9 lines
210 B
Python
9 lines
210 B
Python
|
from humps import camelize
|
||
|
|
||
|
from utils.model import BaseConfig, BaseModel
|
||
|
|
||
|
|
||
|
class DataModel(BaseModel):
|
||
|
class Config(BaseConfig):
|
||
|
alias_generator = lambda x: camelize(x.removesuffix("TextHashMap"))
|