9 lines
216 B
Python
9 lines
216 B
Python
# AI绘图插件
|
||
# 基于pollinations.ai API生成图片
|
||
|
||
from .main import AIGenImagePlugin
|
||
|
||
# 提供get_plugin函数,返回插件实例
|
||
def get_plugin():
|
||
"""获取插件实例"""
|
||
return AIGenImagePlugin() |