fermentord/vendor/github.com/JuulLabs-OSS/ble/context.go
Søren Rasmussen 07a23c1845
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Upgrade to go 1.20 and add vendor catalog
2023-04-22 10:37:23 +02:00

11 lines
253 B
Go

package ble
// ContextKey is a type used for keys of a context
type ContextKey string
var (
// ContextKeySig for SigHandler context
ContextKeySig = ContextKey("sig")
// ContextKeyCCC for per connection contexts
ContextKeyCCC = ContextKey("ccc")
)