├── .gitignore ├── Makefile ├── README.md └── main.go /.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /striss 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerth/striss/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerth/striss/HEAD/README.md -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerth/striss/HEAD/main.go --------------------------------------------------------------------------------