Skip to content

Instantly share code, notes, and snippets.

@m3talsmith
Created September 2, 2020 17:31
Show Gist options
  • Save m3talsmith/ff233d04a1fc7a56337e25a7d464071c to your computer and use it in GitHub Desktop.
Save m3talsmith/ff233d04a1fc7a56337e25a7d464071c to your computer and use it in GitHub Desktop.
Suggested layout for pigeongo
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