Files
certmanager/internal/grpc/handler/status.go
Олег Бородин 07b32e881e istore: updated
2024-08-07 09:20:36 +02:00

15 lines
300 B
Go

package handler
import (
"context"
"certmanager/pkg/cmctl"
)
func (hand *Handler) GetStatus(ctx context.Context, req *cmctl.GetStatusParams) (*cmctl.GetStatusResult, error) {
var err error
hand.log.Debugf("Handle getStatus request")
res, err := hand.lg.GetStatus(ctx, req)
return res, err
}