├── .github └── workflows │ └── ci.yaml ├── LICENSE.md ├── README.md ├── doc.go ├── doc_test.go ├── go.mod ├── go.sum ├── option.go ├── option_test.go └── run.go /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/110y/run/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/110y/run/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/110y/run/HEAD/README.md -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/110y/run/HEAD/doc.go -------------------------------------------------------------------------------- /doc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/110y/run/HEAD/doc_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/110y/run/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/110y/run/HEAD/go.sum -------------------------------------------------------------------------------- /option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/110y/run/HEAD/option.go -------------------------------------------------------------------------------- /option_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/110y/run/HEAD/option_test.go -------------------------------------------------------------------------------- /run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/110y/run/HEAD/run.go --------------------------------------------------------------------------------