1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-24 04:16:27 +02:00
Carlos Alexandro Becker d9c8c5f499
golint
2016-12-30 12:41:59 -02:00

13 lines
202 B
Go

package pipeline
import "github.com/goreleaser/releaser/config"
// Pipe interface
type Pipe interface {
// Name of the pipe
Name() string
// Run the pipe
Run(config config.ProjectConfig) error
}