Files
AiDA_Python/app/service/design/items/__init__.py

17 lines
463 B
Python
Raw Normal View History

2024-05-28 15:22:11 +08:00
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
2024-05-28 15:22:11 +08:00
__all__ = [
'ITEMS', 'build_item',
'Clothing', 'Body',
'Top', 'Blouse', 'Outwear', 'Dress',
'Bottom', 'Trousers', 'Skirt',
'Shoes', 'Bag', 'Hairstyle', 'Earring'
]