mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
9 lines
146 B
Go
9 lines
146 B
Go
|
package pipeline
|
||
|
|
||
|
import "github.com/goreleaser/releaser/config"
|
||
|
|
||
|
type Pipe interface {
|
||
|
Name() string
|
||
|
Work(config config.ProjectConfig) error
|
||
|
}
|