https://github.com/wayneashleyberry/go-proverbs
Go Proverbs as a package and cli.
https://github.com/wayneashleyberry/go-proverbs
cli golang proverbs
Last synced: 6 months ago
JSON representation
Go Proverbs as a package and cli.
- Host: GitHub
- URL: https://github.com/wayneashleyberry/go-proverbs
- Owner: wayneashleyberry
- License: mit
- Created: 2016-10-04T14:28:02.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2021-10-26T08:43:38.000Z (over 4 years ago)
- Last Synced: 2024-06-20T12:43:08.689Z (about 2 years ago)
- Topics: cli, golang, proverbs
- Language: Go
- Homepage:
- Size: 346 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
```
______________________________________
/ The bigger the interface, the weaker \
\ the abstraction. /
--------------------------------------
\ ,-^-.
\ !oYo!
\ /./=\.\______
## )\/\
||-----w||
|| ||
Cowth Vader
```
> Go Proverbs as a package and command.
[](https://travis-ci.org/wayneashleyberry/go-proverbs)
[](https://goreportcard.com/report/github.com/wayneashleyberry/go-proverbs)
[](https://godoc.org/github.com/wayneashleyberry/go-proverbs)
### What are Go proverbs?
Check out [Rob Pike's](https://twitter.com/rob_pike) inspiring [talk at Gopherfest SV 2015](https://www.youtube.com/watch?v=PAAkCSZUG1c).
### Usage
#### Command
```sh
go get github.com/wayneashleyberry/go-proverbs/...
```
```sh
$ goproverb
Design the architecture, name the components, document the details.
```
#### Package
```sh
go get github.com/wayneashleyberry/go-proverbs/
```
```go
package main
import (
"fmt"
p "github.com/wayneashleyberry/go-proverbs"
)
func main() {
fmt.Println(p.Random()) // Prints a random Go proverb.
}
```
### License
MIT © [Wayne Ashley Berry](https://wayne.cloud)