mirror of
https://github.com/PaiGramTeam/genshin-wiki.git
synced 2024-11-21 22:58:02 +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"))
|