├── .github ├── FUNDING.yml ├── dependabot.yaml └── workflows │ └── pullRequests.yaml ├── .gitignore ├── LICENSE ├── README.md ├── clearScreen.go ├── clearScreen_test.go ├── clearScreen_unix_test.go ├── clearScreen_windows_test.go ├── error.go ├── error_test.go ├── example └── main.go ├── go.mod ├── go.sum ├── menu.go ├── menu_test.go └── option.go /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: dixonwille 2 | -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonwille/wmenu/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/pullRequests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonwille/wmenu/HEAD/.github/workflows/pullRequests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonwille/wmenu/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonwille/wmenu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonwille/wmenu/HEAD/README.md -------------------------------------------------------------------------------- /clearScreen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonwille/wmenu/HEAD/clearScreen.go -------------------------------------------------------------------------------- /clearScreen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonwille/wmenu/HEAD/clearScreen_test.go -------------------------------------------------------------------------------- /clearScreen_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonwille/wmenu/HEAD/clearScreen_unix_test.go -------------------------------------------------------------------------------- /clearScreen_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonwille/wmenu/HEAD/clearScreen_windows_test.go -------------------------------------------------------------------------------- /error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonwille/wmenu/HEAD/error.go -------------------------------------------------------------------------------- /error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonwille/wmenu/HEAD/error_test.go -------------------------------------------------------------------------------- /example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonwille/wmenu/HEAD/example/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonwille/wmenu/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonwille/wmenu/HEAD/go.sum -------------------------------------------------------------------------------- /menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonwille/wmenu/HEAD/menu.go -------------------------------------------------------------------------------- /menu_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonwille/wmenu/HEAD/menu_test.go -------------------------------------------------------------------------------- /option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dixonwille/wmenu/HEAD/option.go --------------------------------------------------------------------------------