From 3d522f44dc653c78372677ddf764ea31da850fcd Mon Sep 17 00:00:00 2001 From: what Date: Tue, 16 May 2023 14:45:14 +0800 Subject: [PATCH] =?UTF-8?q?[feat]=20=E6=B7=BB=E5=8A=A0=20GRpc=20=E6=94=AF?= =?UTF-8?q?=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- grpc.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 grpc.go diff --git a/grpc.go b/grpc.go new file mode 100644 index 0000000..451a00c --- /dev/null +++ b/grpc.go @@ -0,0 +1,7 @@ +package contracts + +type GRpc interface { + Start() error + Stop() error + Restart() error +}