ai-gateway/common/conv/any.go

7 lines
80 B
Go
Raw Normal View History

package conv
func AsString(v any) string {
str, _ := v.(string)
return str
}