1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-04-21 12:17:03 +02:00

12 lines
202 B
Go
Raw Normal View History

package middleware
import "github.com/goreleaser/goreleaser/pkg/context"
var ctx = &context.Context{}
func mockAction(err error) Action {
return func(ctx *context.Context) error {
return err
}
}