mirror of
https://github.com/Zippland/Bubbles.git
synced 2026-01-19 01:21:15 +08:00
10 lines
159 B
Python
10 lines
159 B
Python
"""图像生成功能模块
|
|
|
|
包含以下功能:
|
|
- AliyunImage: 阿里云文生图
|
|
"""
|
|
|
|
from .img_aliyun_image import AliyunImage
|
|
|
|
__all__ = ['AliyunImage']
|