Update command.go

This commit is contained in:
Adrien Delorme 2020-05-08 12:00:06 +02:00
parent 5290beb23e
commit 532a69c968
1 changed files with 4 additions and 4 deletions

View File

@ -6,8 +6,8 @@ import "context"
// use Packer. A call returns a int that will be the exit code of Packer, // use Packer. A call returns a int that will be the exit code of Packer,
// everything else is up to the implementer. // everything else is up to the implementer.
type PackerInterface interface { type PackerInterface interface {
Build(ctx context.Context, args BuildArgs) int Build(ctx context.Context, args *BuildArgs) int
Console(ctx context.Context, args ConsoleArgs) int Console(ctx context.Context, args *ConsoleArgs) int
Fix(ctx context.Context, args FixArgs) int Fix(ctx context.Context, args *FixArgs) int
Validate(ctx context.Context, args ValidateArgs) int Validate(ctx context.Context, args *ValidateArgs) int
} }