21 lines
419 B
Go
21 lines
419 B
Go
package constant
|
|
|
|
type TaskPlatform string
|
|
|
|
const (
|
|
TaskPlatformSuno TaskPlatform = "suno"
|
|
TaskPlatformMidjourney = "mj"
|
|
TaskPlatformKling TaskPlatform = "kling"
|
|
TaskPlatformJimeng TaskPlatform = "jimeng"
|
|
)
|
|
|
|
const (
|
|
SunoActionMusic = "MUSIC"
|
|
SunoActionLyrics = "LYRICS"
|
|
)
|
|
|
|
var SunoModel2Action = map[string]string{
|
|
"suno_music": SunoActionMusic,
|
|
"suno_lyrics": SunoActionLyrics,
|
|
}
|