mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
16 lines
230 B
Go
16 lines
230 B
Go
|
package pipeline
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/goreleaser/goreleaser/context"
|
||
|
)
|
||
|
|
||
|
// Defaulter interface
|
||
|
type Defaulter interface {
|
||
|
fmt.Stringer
|
||
|
|
||
|
// Default sets the configuration defaults
|
||
|
Default(ctx *context.Context) error
|
||
|
}
|