meter/handler: fix func signature

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2021-03-25 12:34:34 +03:00
parent d2a30a5da1
commit eb2a450a7b
4 changed files with 5 additions and 7 deletions

View File

@@ -20,5 +20,5 @@ func NewMeterEndpoints() []*api.Endpoint {
}
type MeterServer interface {
Metrics(ctx context.Context, req *Empty, rsp *codec.Frame) error
Metrics(ctx context.Context, req *codec.Frame, rsp *codec.Frame) error
}