├── .travis.yml ├── README.md ├── command.go └── command_test.go /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 1.2 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakyll/command/HEAD/README.md -------------------------------------------------------------------------------- /command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakyll/command/HEAD/command.go -------------------------------------------------------------------------------- /command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakyll/command/HEAD/command_test.go --------------------------------------------------------------------------------