gpt-sovits / pkg /utils /balance.go
hanfish's picture
111
215df2f verified
raw
history blame contribute delete
No virus
357 Bytes
package utils
import "strings"
var balance = ".balance"
func IsBalance(str string) bool {
return strings.Contains(str, balance)
}
// GetActualMountPath remove balance suffix
func GetActualMountPath(mountPath string) string {
bIndex := strings.LastIndex(mountPath, ".balance")
if bIndex != -1 {
mountPath = mountPath[:bIndex]
}
return mountPath
}