Skip to content

Commit

Permalink
Clean up examples to take less space
Browse files Browse the repository at this point in the history
  • Loading branch information
ldemailly committed Oct 20, 2024
1 parent 63168c2 commit 31369b7
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions docs/_posts/2024-10-19-no-nonsense-go-package-layout.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,19 +75,17 @@ You can have more than 1 file in a package/directory in go. You don't need to ma

There are lots of example of overly complicated repos. I'd give my own repos but they also evolved organically and aren't actually that good/or simple, but here we go anyway:

Packages in [github.com/fortio/](http://github.com/fortio/)
Repositories in [github.com/fortio/](http://github.com/fortio/)

Server example:
- [github.com/fortio/proxy](https://github.com/fortio/proxy)
Server example: [github.com/fortio/proxy](https://github.com/fortio/proxy)

Cli example:
- [github.com/fortio/multicurl](https://github.com/fortio/multicurl)
CLI example: [github.com/fortio/multicurl](https://github.com/fortio/multicurl)

Server + libraries + cli:
- [github.com/fortio/fortio](https://github.com/fortio/fortio)
Server + libraries + cli: [github.com/fortio/fortio](https://github.com/fortio/fortio)

Library + clis:
- That one is somewhat odly setup as it has 2 libraries, one at the root where it started and a newer one, so not exactly best [github.com/fortio/terminal](https://github.com/fortio/terminal)
Library + CLIs: that one is somewhat oddly setup as it has 2 libraries, one at the root where it started and a newer one, so not exactly best practices [github.com/fortio/terminal](https://github.com/fortio/terminal)

Language with CLI, libraries and wasm target: [github.com/grol-io/grol](https://github.com/grol-io/grol)


### But...
Expand Down

0 comments on commit 31369b7

Please sign in to comment.