├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── main.go └── packages.go /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kynrai/tainted/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kynrai/tainted/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kynrai/tainted/HEAD/README.md -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kynrai/tainted/HEAD/main.go -------------------------------------------------------------------------------- /packages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kynrai/tainted/HEAD/packages.go --------------------------------------------------------------------------------