summaryrefslogtreecommitdiff
path: root/build/instructions.go
blob: eda651cb200db27e0da7103f91c414a8e775473d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package build

type InstructionType int

const (
	Run InstructionType = iota
	Copy
	Env
)

type Instruction struct {
	Type InstructionType
	Arguments []string
}