(ctx context.Context)
| 24 | } |
| 25 | |
| 26 | func GetSetServiceDataFromContext(ctx context.Context) (func(a *anypb.Any), bool) { |
| 27 | setServiceData, ok := ctx.Value(ServiceDataKey).(func(*anypb.Any)) |
| 28 | return setServiceData, ok |
| 29 | } |
| 30 | |
| 31 | // WithSetAuditWorkspaceID registers a callback handlers can use to tell the |
| 32 | // audit interceptor which workspace a request should be audited against. This |
no outgoing calls
no test coverage detected