You cannot 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 | |
---|---|---|
docs | 1 year ago | |
LICENSE | 2 years ago | |
README.md | 1 year ago | |
go.mod | 1 year ago | |
lenin.go | 2 years ago | |
lenin_type.go | 2 years ago |
README.md
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)
}