mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-05 16:39:50 +00:00
24 lines
470 B
Go
24 lines
470 B
Go
|
package store
|
||
|
|
||
|
import (
|
||
|
"golang.org/x/net/context"
|
||
|
)
|
||
|
|
||
|
const key = "store"
|
||
|
|
||
|
// Setter defines a context that enables setting values.
|
||
|
type Setter interface {
|
||
|
Set(string, interface{})
|
||
|
}
|
||
|
|
||
|
// FromContext returns the Store associated with this context.
|
||
|
func FromContext(c context.Context) Store {
|
||
|
return c.Value(key).(Store)
|
||
|
}
|
||
|
|
||
|
// ToContext adds the Store to this context if it supports
|
||
|
// the Setter interface.
|
||
|
func ToContext(c Setter, store Store) {
|
||
|
c.Set(key, store)
|
||
|
}
|