mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-09-17 17:16:38 +08:00
10 lines
106 B
Go
10 lines
106 B
Go
package conv
|
|
|
|
func AsString(v any) string {
|
|
if str, ok := v.(string); ok {
|
|
return str
|
|
}
|
|
|
|
return ""
|
|
}
|