package command // Command runs (without arguments) and return an error. type Command interface { Path() string Run() error }