mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-17 19:00:12 -05:00
9 lines
195 B
Go
9 lines
195 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)
|
|
}
|