├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── cache.go ├── cmd ├── benchht │ └── main.go └── benchsmt │ └── main.go ├── doc ├── auditpathgen.png └── cachesize.png ├── gosmt.go ├── gosmt_test.go └── util.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylls/gosmt/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - tip 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylls/gosmt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylls/gosmt/HEAD/README.md -------------------------------------------------------------------------------- /cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylls/gosmt/HEAD/cache.go -------------------------------------------------------------------------------- /cmd/benchht/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylls/gosmt/HEAD/cmd/benchht/main.go -------------------------------------------------------------------------------- /cmd/benchsmt/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylls/gosmt/HEAD/cmd/benchsmt/main.go -------------------------------------------------------------------------------- /doc/auditpathgen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylls/gosmt/HEAD/doc/auditpathgen.png -------------------------------------------------------------------------------- /doc/cachesize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylls/gosmt/HEAD/doc/cachesize.png -------------------------------------------------------------------------------- /gosmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylls/gosmt/HEAD/gosmt.go -------------------------------------------------------------------------------- /gosmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylls/gosmt/HEAD/gosmt_test.go -------------------------------------------------------------------------------- /util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylls/gosmt/HEAD/util.go --------------------------------------------------------------------------------