├── .gitignore ├── CHANGELOG ├── LICENSE ├── MANIFEST ├── README.md └── file2http.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/file2http/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- 1 | Version 0.1 - 2012-08-01 2 | * Initial release -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/file2http/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- 1 | file2http.go 2 | README.md 3 | LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/file2http/HEAD/README.md -------------------------------------------------------------------------------- /file2http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitly/file2http/HEAD/file2http.go --------------------------------------------------------------------------------