2022-05-03 09:45:54 +00:00
|
|
|
package plugin
|
|
|
|
|
|
|
|
import (
|
2022-05-29 11:56:55 +00:00
|
|
|
"github.com/thegeeklab/drone-plugin-lib/v2/drone"
|
2022-05-03 09:45:54 +00: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.
|
2023-02-08 09:14:25 +00:00
|
|
|
func New(settings Settings, pipeline drone.Pipeline, network drone.Network) *Plugin {
|
2022-05-03 09:45:54 +00:00
|
|
|
return &Plugin{
|
|
|
|
settings: settings,
|
|
|
|
pipeline: pipeline,
|
|
|
|
network: network,
|
|
|
|
}
|
|
|
|
}
|