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

type InstructionType int

const (
	Run InstructionType = iota
	Copy
)

type Instruction struct {
	Type InstructionType
	Arguments []string
}