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

287 B

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)
}