├── .gitignore ├── .travis.yml ├── CONTRIBUTORS.md ├── LICENSE ├── Readme.md ├── functions.go ├── functions_test.go ├── structs.go └── testdata ├── eve.json └── eve_broken.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhaist/surevego/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhaist/surevego/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhaist/surevego/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhaist/surevego/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhaist/surevego/HEAD/Readme.md -------------------------------------------------------------------------------- /functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhaist/surevego/HEAD/functions.go -------------------------------------------------------------------------------- /functions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhaist/surevego/HEAD/functions_test.go -------------------------------------------------------------------------------- /structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhaist/surevego/HEAD/structs.go -------------------------------------------------------------------------------- /testdata/eve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhaist/surevego/HEAD/testdata/eve.json -------------------------------------------------------------------------------- /testdata/eve_broken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhaist/surevego/HEAD/testdata/eve_broken.json --------------------------------------------------------------------------------