mirror of
https://github.com/linux-do/new-api.git
synced 2025-09-17 07:56:38 +08:00
19 lines
324 B
Go
19 lines
324 B
Go
package constant
|
|
|
|
type TaskPlatform string
|
|
|
|
const (
|
|
TaskPlatformSuno TaskPlatform = "suno"
|
|
TaskPlatformMidjourney = "mj"
|
|
)
|
|
|
|
const (
|
|
SunoActionMusic = "MUSIC"
|
|
SunoActionLyrics = "LYRICS"
|
|
)
|
|
|
|
var SunoModel2Action = map[string]string{
|
|
"suno_music": SunoActionMusic,
|
|
"suno_lyrics": SunoActionLyrics,
|
|
}
|