mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-27 12:21:03 +00:00
13 lines
296 B
Go
13 lines
296 B
Go
|
package director
|
||
|
|
||
|
import (
|
||
|
"code.google.com/p/go.net/context"
|
||
|
"github.com/drone/drone/server/worker"
|
||
|
)
|
||
|
|
||
|
// NewContext returns a Context whose Value method returns
|
||
|
// the director.
|
||
|
func NewContext(parent context.Context, w worker.Worker) context.Context {
|
||
|
return worker.NewContext(parent, w)
|
||
|
}
|