mirror of
https://github.com/AynaLivePlayer/blivedm-go.git
synced 2025-12-06 11:22:50 +08:00
8 lines
140 B
Go
8 lines
140 B
Go
package utils
|
|
|
|
import "encoding/json"
|
|
|
|
func UnmarshalStr(str string, v interface{}) error {
|
|
return json.Unmarshal(StringToBytes(str), v)
|
|
}
|