mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-03-30 13:31:17 +00: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,
|
|
}
|