mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-10 06:16:53 -05:00
16 lines
295 B
Go
16 lines
295 B
Go
package v4
|
|
|
|
import (
|
|
"github.com/golang/protobuf/proto"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/transport/internet/grpc"
|
|
)
|
|
|
|
type GunConfig struct {
|
|
ServiceName string `json:"serviceName"`
|
|
}
|
|
|
|
func (g GunConfig) Build() (proto.Message, error) {
|
|
return &grpc.Config{ServiceName: g.ServiceName}, nil
|
|
}
|