fermentord/vendor/github.com/JuulLabs-OSS/ble/context.go

12 lines
253 B
Go
Raw Normal View History

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")
)