Files
steampipe/pkg/contexthelpers/context_key.go
kaidaguerre 43dd6c7a61 Refactor Plugin manager:remove support for plugins which do not support multiple connections, simplify startup.
If plugin process crashes, benchmark or dashboard runs can leave running plugin processes after shutdown. Fixes #3598
2023-06-21 16:18:49 +01:00

9 lines
196 B
Go

package contexthelpers
// https://medium.com/@matryer/context-keys-in-go-5312346a868d
type ContextKey string
func (c ContextKey) String() string {
return "steampipe context key " + string(c)
}