1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-08-10 21:52:01 +02:00

First commit. Modified proto. Added empty handler method.

This commit is contained in:
Milos Gajdos
2019-11-26 15:39:55 +00:00
parent 6f1c30aef5
commit 4e965e4ce5
4 changed files with 243 additions and 32 deletions

View File

@@ -39,3 +39,7 @@ func (d *Debug) Stats(ctx context.Context, req *proto.StatsRequest, rsp *proto.S
rsp.Threads = uint64(runtime.NumGoroutine())
return nil
}
func (d *Debug) Log(ctx context.Context, req *proto.LogRequest, rsp *proto.Debug_LogStream) error {
return nil
}