Skip to content

Latest commit

 

History

History
10 lines (10 loc) · 593 Bytes

File metadata and controls

10 lines (10 loc) · 593 Bytes
  • Rebuild after every code change. emailable on PATH points at bin/emailable in this repo; without make build the user is running a stale binary.
  • Don't print success/hint lines with raw fmt.Fprintf. Use (*output.Human).Success(msg) for the headline (✓ msg) and (*output.Human).Hint(msg) for any follow-up tip — that's how the CLI stays visually uniform across commands.
  • Keep the CLI surface 1:1 with the API endpoints. Don't split one endpoint into multiple subcommands or merge two into one without a reason.