1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-10 03:47:03 +02:00
goreleaser/pipeline/pipe.go
Carlos Alexandro Becker f95832a7ac
renamed package
refs #79
2017-01-14 20:01:32 -02:00

13 lines
205 B
Go

package pipeline
import "github.com/goreleaser/goreleaser/context"
// Pipe interface
type Pipe interface {
// Name of the pipe
Description() string
// Run the pipe
Run(ctx *context.Context) error
}