Created
September 2, 2020 17:31
-
-
Save m3talsmith/ff233d04a1fc7a56337e25a7d464071c to your computer and use it in GitHub Desktop.
Suggested layout for pigeongo
This file contains hidden or 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
root // package pigeongo | |
│ | |
├── cmd // package cmd | |
│ │ // import ( | |
│ │ // "flag" | |
│ │ // "tildegit.org/PigeonProtocolConsortium/pigeongo" | |
│ │ // ) | |
│ ├── cli.go | |
│ ├── cli_test.go | |
│ └── ... | |
├── internal // package internal | |
│ ├── id.go | |
│ ├── id_test.go | |
│ └── ... | |
│ | |
├── id.go | |
│ // import ( | |
│ // "tildegit.org/PigeonProtocolConsortium/pigeongo/internal" | |
│ // ) | |
├── id_test.go | |
└── ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment