mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-05 14:43:03 +00:00
15 lines
268 B
Go
15 lines
268 B
Go
|
package grpc
|
||
|
|
||
|
import (
|
||
|
"github.com/xtls/xray-core/common"
|
||
|
"github.com/xtls/xray-core/transport/internet"
|
||
|
)
|
||
|
|
||
|
const protocolName = "grpc"
|
||
|
|
||
|
func init() {
|
||
|
common.Must(internet.RegisterProtocolConfigCreator(protocolName, func() interface{} {
|
||
|
return new(Config)
|
||
|
}))
|
||
|
}
|