1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-08 03:31:59 +02:00
goreleaser/pipeline/pipe.go
2017-04-14 15:39:32 -03:00

14 lines
260 B
Go

// Package pipeline provides a generic pipe interface.
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
}