1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-06 03:54:22 -04:00
v2fly/common/net/network_json.go
2016-08-20 20:55:45 +02:00

19 lines
303 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
}