| 123456789101112131415161718 |
- 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,
- }
|