├── .goreleaser.yml ├── README.md ├── const.go ├── const_windows.go ├── main.go ├── runner.go └── wordlist.go /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joohoi/godance/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joohoi/godance/HEAD/README.md -------------------------------------------------------------------------------- /const.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | 3 | package main 4 | 5 | const ( 6 | TERMINAL_CLEAR_LINE = "\r\x1b[2K" 7 | ) 8 | -------------------------------------------------------------------------------- /const_windows.go: -------------------------------------------------------------------------------- 1 | // +build windows 2 | 3 | package main 4 | 5 | const ( 6 | TERMINAL_CLEAR_LINE = "\r\r" 7 | ) 8 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joohoi/godance/HEAD/main.go -------------------------------------------------------------------------------- /runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joohoi/godance/HEAD/runner.go -------------------------------------------------------------------------------- /wordlist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joohoi/godance/HEAD/wordlist.go --------------------------------------------------------------------------------