├── .travis.yml ├── LICENSE ├── README.md ├── arc.go ├── arc_test.go ├── entry.go └── util.go /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - tip 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderGugel/arc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderGugel/arc/HEAD/README.md -------------------------------------------------------------------------------- /arc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderGugel/arc/HEAD/arc.go -------------------------------------------------------------------------------- /arc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderGugel/arc/HEAD/arc_test.go -------------------------------------------------------------------------------- /entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderGugel/arc/HEAD/entry.go -------------------------------------------------------------------------------- /util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexanderGugel/arc/HEAD/util.go --------------------------------------------------------------------------------