├── .gitignore ├── .godir ├── Godeps ├── Godeps.json ├── Readme └── _workspace │ └── .gitignore ├── LICENSE ├── Procfile ├── README.md └── web.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deis/example-go/HEAD/.gitignore -------------------------------------------------------------------------------- /.godir: -------------------------------------------------------------------------------- 1 | example-go 2 | -------------------------------------------------------------------------------- /Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deis/example-go/HEAD/Godeps/Godeps.json -------------------------------------------------------------------------------- /Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deis/example-go/HEAD/Godeps/Readme -------------------------------------------------------------------------------- /Godeps/_workspace/.gitignore: -------------------------------------------------------------------------------- 1 | /pkg 2 | /bin 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deis/example-go/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: example-go 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deis/example-go/HEAD/README.md -------------------------------------------------------------------------------- /web.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deis/example-go/HEAD/web.go --------------------------------------------------------------------------------