├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── easytags.go ├── easytags_test.go ├── go.mod └── testfile.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betacraft/easytags/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.4 5 | 6 | script: go test -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betacraft/easytags/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betacraft/easytags/HEAD/README.md -------------------------------------------------------------------------------- /easytags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betacraft/easytags/HEAD/easytags.go -------------------------------------------------------------------------------- /easytags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betacraft/easytags/HEAD/easytags_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/betacraft/easytags 2 | -------------------------------------------------------------------------------- /testfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betacraft/easytags/HEAD/testfile.go --------------------------------------------------------------------------------