diff options
author | Grail Finder <wohilas@gmail.com> | 2025-05-17 12:19:30 +0300 |
---|---|---|
committer | Grail Finder <wohilas@gmail.com> | 2025-05-17 12:19:30 +0300 |
commit | d05d90474797977a5b1aad19a8c5277453dd754c (patch) | |
tree | ba71ec906df01a7c86e023e028cd822e0e99cec1 /models | |
parent | 10cca9037fac14fff966dd1fd6e9de86893d3981 (diff) |
Feat: add extra kokoro tts
Diffstat (limited to 'models')
-rw-r--r-- | models/extra.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/models/extra.go b/models/extra.go new file mode 100644 index 0000000..4e3a0bf --- /dev/null +++ b/models/extra.go @@ -0,0 +1,8 @@ +package models + +type AudioFormat string + +const ( + AFOPUS AudioFormat = "opus" + AFMP3 AudioFormat = "mp3" +) |