├── .gitignore ├── LICENSE ├── README.md ├── parser.go ├── types.go └── utils.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-muller/go-torrent-parser/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-muller/go-torrent-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-muller/go-torrent-parser/HEAD/README.md -------------------------------------------------------------------------------- /parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-muller/go-torrent-parser/HEAD/parser.go -------------------------------------------------------------------------------- /types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-muller/go-torrent-parser/HEAD/types.go -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j-muller/go-torrent-parser/HEAD/utils.go --------------------------------------------------------------------------------