12345678910111213 |
- package interrupt
- import "context"
- type contextKeyIsExternalConnection struct{}
- func ContextWithIsExternalConnection(ctx context.Context) context.Context {
- return context.WithValue(ctx, contextKeyIsExternalConnection{}, true)
- }
- func IsExternalConnectionFromContext(ctx context.Context) bool {
- return ctx.Value(contextKeyIsExternalConnection{}) != nil
- }
|