Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/maxguuse/bruh

A CLI utility to easily use the Golang project structure that I prefer.
https://github.com/maxguuse/bruh

cli cli-app go golang

Last synced: 28 days ago
JSON representation

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

Awesome Lists containing this project

README

        

# 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
```