├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── art.go ├── cmd └── main.go ├── download-atomics.sh ├── executor.go ├── go.mod ├── go.sum ├── include ├── logo.png └── logo.txt ├── printer.go ├── types └── atomic-test.go ├── util.go └── version.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeshadow/go-atomicredteam/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeshadow/go-atomicredteam/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeshadow/go-atomicredteam/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeshadow/go-atomicredteam/HEAD/README.md -------------------------------------------------------------------------------- /art.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeshadow/go-atomicredteam/HEAD/art.go -------------------------------------------------------------------------------- /cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeshadow/go-atomicredteam/HEAD/cmd/main.go -------------------------------------------------------------------------------- /download-atomics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeshadow/go-atomicredteam/HEAD/download-atomics.sh -------------------------------------------------------------------------------- /executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeshadow/go-atomicredteam/HEAD/executor.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeshadow/go-atomicredteam/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeshadow/go-atomicredteam/HEAD/go.sum -------------------------------------------------------------------------------- /include/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeshadow/go-atomicredteam/HEAD/include/logo.png -------------------------------------------------------------------------------- /include/logo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeshadow/go-atomicredteam/HEAD/include/logo.txt -------------------------------------------------------------------------------- /printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeshadow/go-atomicredteam/HEAD/printer.go -------------------------------------------------------------------------------- /types/atomic-test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeshadow/go-atomicredteam/HEAD/types/atomic-test.go -------------------------------------------------------------------------------- /util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeshadow/go-atomicredteam/HEAD/util.go -------------------------------------------------------------------------------- /version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/activeshadow/go-atomicredteam/HEAD/version.go --------------------------------------------------------------------------------