17 lines
		
	
	
		
			309 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			309 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package server
 | |
| 
 | |
| import (
 | |
| 	"golang.org/x/net/context"
 | |
| )
 | |
| 
 | |
| 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)
 | |
| }
 |