mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 03:24:26 +00:00
18 lines
481 B
Go
18 lines
481 B
Go
package middleware
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/caos/zitadel/internal/api/service"
|
|
_ "github.com/caos/zitadel/internal/statik"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
func ServiceHandler() grpc.UnaryServerInterceptor {
|
|
return func(ctx context.Context, req interface{}, info *grpc.UnaryServerInfo, handler grpc.UnaryHandler) (interface{}, error) {
|
|
namer := info.Server.(interface{ AppName() string })
|
|
ctx = service.WithService(ctx, namer.AppName())
|
|
return handler(ctx, req)
|
|
}
|
|
}
|