A CLI utility to easily use the Golang project structure that I prefer.
go install github.com/maxguuse/bruh/cmd/bruh@latest
.
├── apps
│ ├── api
│ │ ├── cmd
│ │ │ └── main.go
│ │ ├── go.mod
│ │ └── internal
│ └── user
│ ├── cmd
│ │ └── main.go
│ ├── go.mod
│ └── internal
├── bruh.yaml
├── go.work
└── libs
├── config
│ ├── go.mod
│ └── main.go
└── logger
├── go.mod
└── main.go