summaryrefslogtreecommitdiff
path: root/zettelkast/Notes/010420240957 - spf13 cobra.md
blob: e867fe6f5ef25361223279e8ba554472c621343b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Cobra is a [[Golang]] library for creating command-line interfaces.

CLI for generating stuff:
```
go install github.com/spf13/cobra-cli@latest
```

The library itself:
```
go get -u github.com/spf13/cobra@latest

import "github.com/spf13/cobra"
```