2016-01-28 21:23:24 +03:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
2018-03-03 14:53:52 +03:00
|
|
|
"context"
|
2016-01-28 21:23:24 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
type serverKey struct{}
|
|
|
|
|
|
|
|
func FromContext(ctx context.Context) (Server, bool) {
|
|
|
|
c, ok := ctx.Value(serverKey{}).(Server)
|
|
|
|
return c, ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewContext(ctx context.Context, s Server) context.Context {
|
|
|
|
return context.WithValue(ctx, serverKey{}, s)
|
|
|
|
}
|