Files
AiDA_Python/app/service/design/items/__init__.py
zchengrong e8d8b715ae feat(新功能):
fix(修复bug):   accessories 替换为 others
docs(文档变更):
refactor(重构):
test(增加测试):
2025-11-07 10:56:34 +08:00

17 lines
463 B
Python

from .builder import ITEMS, build_item
from .clothing import Clothing # 4.0 sec
from .body import Body
from .top import Top, Blouse, Outwear, Dress
from .bottom import Bottom, Trousers, Skirt
from .shoes import Shoes
from .bag import Bag
from .others import Hairstyle, Earring
__all__ = [
'ITEMS', 'build_item',
'Clothing', 'Body',
'Top', 'Blouse', 'Outwear', 'Dress',
'Bottom', 'Trousers', 'Skirt',
'Shoes', 'Bag', 'Hairstyle', 'Earring'
]