This repository has been archived on 2021-12-17. You can view files and clone it, but cannot push or open issues/pull-requests.
inspiro/README.md

24 lines
287 B
Markdown
Raw Permalink Normal View History

# inspiro
A tiny package for generating a link from https://inspirobot.me
## Example
```go
package main
import (
"fmt"
"go.etztech.xyz/inspiro"
)
func main() {
link, err := inspiro.Generate()
if err != nil {
panic(err)
}
fmt.Println(link)
}
```