Skip to content

Instantly share code, notes, and snippets.

@mrsinham
Created September 26, 2014 08:06
Show Gist options
  • Save mrsinham/40a944922cc33b1c08b2 to your computer and use it in GitHub Desktop.
Save mrsinham/40a944922cc33b1c08b2 to your computer and use it in GitHub Desktop.
Golang directory structure
bin/
streak # command executable
todo # command executable
pkg/
linux_amd64/
code.google.com/p/goauth2/
oauth.a # package object
github.com/nf/todo/
task.a # package object
src/
code.google.com/p/goauth2/
.hg/ # mercurial repository metadata
oauth/
oauth.go # package source
oauth_test.go # test source
github.com/nf/
streak/
.git/ # git repository metadata
oauth.go # command source
streak.go # command source
todo/
.git/ # git repository metadata
task/
task.go # package source
todo.go # command source
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment