18 lines
337 B
Go
18 lines
337 B
Go
package constant
|
|
|
|
const (
|
|
MjErrorUnknown = 5
|
|
MjRequestError = 4
|
|
)
|
|
|
|
const (
|
|
MjActionImagine = "IMAGINE"
|
|
MjActionDescribe = "DESCRIBE"
|
|
MjActionBlend = "BLEND"
|
|
MjActionUpscale = "UPSCALE"
|
|
MjActionVariation = "VARIATION"
|
|
MjActionInPaint = "INPAINT"
|
|
MjActionInPaintPre = "INPAINT_PRE"
|
|
MjActionZoom = "ZOOM"
|
|
)
|