chore: tweak linter warnings

This commit is contained in:
Steven
2024-08-20 08:25:34 +08:00
parent 2999f472dd
commit b376a20fb4
3 changed files with 3 additions and 4 deletions

View File

@ -9,7 +9,7 @@ import (
"time"
"github.com/google/uuid"
grpc_recovery "github.com/grpc-ecosystem/go-grpc-middleware/recovery"
grpcrecovery "github.com/grpc-ecosystem/go-grpc-middleware/recovery"
"github.com/labstack/echo/v4"
"github.com/labstack/echo/v4/middleware"
"github.com/pkg/errors"
@ -78,7 +78,7 @@ func NewServer(ctx context.Context, profile *profile.Profile, store *store.Store
grpc.MaxRecvMsgSize(100*1024*1024),
grpc.ChainUnaryInterceptor(
apiv1.NewLoggerInterceptor().LoggerInterceptor,
grpc_recovery.UnaryServerInterceptor(),
grpcrecovery.UnaryServerInterceptor(),
apiv1.NewGRPCAuthInterceptor(store, secret).AuthenticationInterceptor,
))
s.grpcServer = grpcServer