Remotsy library for Go/Golang
Replace creds.Username = ""
with your acutal username
Replace creds.Password = ""
with your acutal password
Click here to download example.go
package main
import (
"fmt"
"github.com/jaytarang92/goremotsy"
)
func main() {
remotsyAPI := remotsy.Remotsy{}
remotsyAPI.Username = ""
remotsyAPI.Password = ""
remotes := remotsyAPI.GetRemotes()
fmt.Println(remotes)
}
Thanks to Jorge Cisneros (Creator of Remotsy) 😃 @Github