mirror of
https://github.com/thegeeklab/drone-matrix.git
synced 2024-11-01 01:00:41 +00:00
28 lines
717 B
Go
28 lines
717 B
Go
// Copyright (c) 2020, the Drone Plugins project authors.
|
|
// Copyright (c) 2021, Robert Kaussow <mail@thegeeklab.de>
|
|
|
|
// Use of this source code is governed by an Apache 2.0 license that can be
|
|
// found in the LICENSE file.
|
|
|
|
package plugin
|
|
|
|
import (
|
|
"github.com/thegeeklab/drone-plugin-lib/v2/drone"
|
|
)
|
|
|
|
// 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) *Plugin {
|
|
return &Plugin{
|
|
settings: settings,
|
|
pipeline: pipeline,
|
|
network: network,
|
|
}
|
|
}
|