1 package command 2 3 // Command runs (without arguments) and return an error. 4 type Command interface { 5 Path() string 6 Run() error 7 } 8
View as plain text