mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-02-06 22:52:26 +00:00
11 lines
260 B
Go
11 lines
260 B
Go
package blobsql
|
|
|
|
import (
|
|
"code.google.com/p/go.net/context"
|
|
"github.com/drone/drone/server/blobstore"
|
|
"github.com/russross/meddler"
|
|
)
|
|
|
|
func NewContext(parent context.Context, db meddler.DB) context.Context {
|
|
return blobstore.NewContext(parent, New(db))
|
|
}
|