Last active
August 6, 2021 11:34
-
-
Save percybolmer/46097c99924a7ced1262cb60801cb532 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// PingPongServer is the server API for PingPong service. | |
// All implementations must embed UnimplementedPingPongServer | |
// for forward compatibility | |
type PingPongServer interface { | |
Ping(context.Context, *PingRequest) (*PongResponse, error) | |
mustEmbedUnimplementedPingPongServer() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment