Add README

Signed-off-by: Etzelia <etzelia@hotmail.com>
master
Etzelia 2020-06-06 13:55:51 -05:00
parent 2a366908d8
commit edfdf9da23
No known key found for this signature in database
GPG Key ID: 708511AE7ABC5314
1 changed files with 24 additions and 0 deletions

24
README.md 100644
View File

@ -0,0 +1,24 @@
# 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)
}
```