This repository has been archived on 2021-12-17. You can view files and clone it, but cannot push or open issues/pull-requests.
Go to file
Etzelia 4df0a95827 Update 'go.mod' 2021-05-05 03:13:49 +00:00
LICENSE Initial Commit 2020-06-06 13:53:10 -05:00
README.md Add README 2020-06-06 13:55:51 -05:00
go.mod Update 'go.mod' 2021-05-05 03:13:49 +00:00
inspiro.go Initial Commit 2020-06-06 13:53:10 -05:00
inspiro_test.go Initial Commit 2020-06-06 13:53:10 -05:00

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