You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
1 year ago | |
---|---|---|
LICENSE | 2 years ago | |
README.md | 2 years ago | |
go.mod | 1 year ago | |
inspiro.go | 2 years ago | |
inspiro_test.go | 2 years ago |
README.md
inspiro
A tiny package for generating a link from https://inspirobot.me
Example
package main
import (
"fmt"
"go.etztech.xyz/inspiro"
)
func main() {
link, err := inspiro.Generate()
if err != nil {
panic(err)
}
fmt.Println(link)
}