[feat] 添加 GRpc 支持

This commit is contained in:
what 2023-05-16 14:45:14 +08:00
parent a8a7318f68
commit 3d522f44dc

7
grpc.go Normal file
View File

@ -0,0 +1,7 @@
package contracts
type GRpc interface {
Start() error
Stop() error
Restart() error
}