tranport draft, renamed module

This commit is contained in:
2021-07-17 22:40:06 +02:00
parent a6696b1d39
commit 9c16750ffc
14 changed files with 338 additions and 65 deletions

10
transport/grpc/grpc.go Normal file
View File

@ -0,0 +1,10 @@
package grpc
import (
"go.linka.cloud/grpc/transport"
"google.golang.org/grpc"
)
var (
_ transport.Transport = &grpc.Server{}
)