mj执行器

This commit is contained in:
cherishsince 2024-04-01 22:32:07 +08:00
parent 196b9ab39c
commit 5d4a111170

View File

@ -0,0 +1,17 @@
package cn.iocoder.yudao.framework.ai.Midjourney;
/**
* mj 命令
*/
public interface MjExecute {
/**
* 执行命令
*
* @param mjCommand
* @param prompt
* @return
*/
boolean execute(MjCommandEnum mjCommand, String prompt);
}