Repository archiving
This library was archived because a replacement was written for it.
Under the MIT license: https://git.lcomrade.su/root/pasteapi.go
Lenin is a golang library for working with the Lenpaste API.
NOTE:
Library releases correspond to the Lenpaste server releases.
Install
go get git.lcomrade.su/root/lenin
Example
Create new paste:
package main
import(
"git.lcomrade.su/root/lenin"
"fmt"
)
func main() {
// Base API URL
baseURL := "https://paste.lcomrade.su/api"
//Clean base URL
baseURL = lenin.CleanURL(baseURL)
// Create request
req := lenin.NewReq {
Title: "Lenin library",
Text: "Lenin is a golang library for working with the Lenpaste API",
Expiration: "5m",
}
// Do request
resp, err := lenin.New(req, baseURL)
if err != nil {
panic(err)
}
// Print result
fmt.Println("Paste name:", resp.Name)
}
Documentation