Søren Rasmussen
07a23c1845
Some checks reported errors
continuous-integration/drone/push Build encountered an error
11 lines
253 B
Go
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")
|
|
)
|