drone-docker/plugin/plugin.go

22 lines
497 B
Go
Raw Permalink Normal View History

2021-01-17 13:06:23 +01:00
package plugin
import (
"github.com/thegeeklab/drone-plugin-lib/v2/drone"
2021-01-17 13:06:23 +01:00
)
// Plugin implements drone.Plugin to provide the plugin implementation.
type Plugin struct {
settings Settings
pipeline drone.Pipeline
network drone.Network
}
// New initializes a plugin from the given Settings, Pipeline, and Network.
func New(settings Settings, pipeline drone.Pipeline, network drone.Network) drone.Plugin {
return &Plugin{
settings: settings,
pipeline: pipeline,
network: network,
}
}