mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 09:17:55 -04:00
19 lines
315 B
Go
19 lines
315 B
Go
// +build json
|
|
|
|
package net
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/v2ray/v2ray-core/common/serial"
|
|
)
|
|
|
|
func (this *NetworkList) UnmarshalJSON(data []byte) error {
|
|
var strlist serial.StringTList
|
|
if err := json.Unmarshal(data, &strlist); err != nil {
|
|
return err
|
|
}
|
|
*this = NewNetworkList(strlist)
|
|
return nil
|
|
}
|