Created
September 26, 2014 08:06
-
-
Save mrsinham/40a944922cc33b1c08b2 to your computer and use it in GitHub Desktop.
Golang directory structure
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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