1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-09 13:36:56 +02:00

13 lines
202 B
Go
Raw Normal View History

2016-12-30 09:27:35 -02:00
package pipeline
import "github.com/goreleaser/releaser/config"
2016-12-30 12:41:59 -02:00
// Pipe interface
2016-12-30 09:27:35 -02:00
type Pipe interface {
2016-12-30 12:41:59 -02:00
// Name of the pipe
2016-12-30 09:27:35 -02:00
Name() string
2016-12-30 12:41:59 -02:00
// Run the pipe
Run(config config.ProjectConfig) error
2016-12-30 09:27:35 -02:00
}