1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-29 15:26:29 -04:00
v2fly/common/net/network_json.go
2016-09-22 12:14:50 +02:00

19 lines
304 B
Go

// +build json
package net
import (
"encoding/json"
"v2ray.com/core/common/collect"
)
func (this *NetworkList) UnmarshalJSON(data []byte) error {
var strlist collect.StringList
if err := json.Unmarshal(data, &strlist); err != nil {
return err
}
*this = *NewNetworkList(strlist)
return nil
}