task.go 324 B

123456789101112131415161718
  1. package constant
  2. type TaskPlatform string
  3. const (
  4. TaskPlatformSuno TaskPlatform = "suno"
  5. TaskPlatformMidjourney = "mj"
  6. )
  7. const (
  8. SunoActionMusic = "MUSIC"
  9. SunoActionLyrics = "LYRICS"
  10. )
  11. var SunoModel2Action = map[string]string{
  12. "suno_music": SunoActionMusic,
  13. "suno_lyrics": SunoActionLyrics,
  14. }