Go client package for the CSApi (API for certified-senders.org)
Import the lib as usual
import "go.bnck.me/csapi/v2"Then create a new client. The login will be handled automatically. You will get a authenticated client.
api, err := csapi.NewWithOptions(csapi.WithAPIKey("abc-123"))
if err != nil {
return err
}