Skip to content

Latest commit

 

History

History
32 lines (30 loc) · 697 Bytes

README.md

File metadata and controls

32 lines (30 loc) · 697 Bytes

bruh

A CLI utility to easily use the Golang project structure that I prefer.

Installation

go install github.com/maxguuse/bruh/cmd/bruh@latest

Possible output project structure

.
├── 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