// JSON objects used in the responses // // Licensed under CC0 1.0 Universal: // https://creativecommons.org/publicdomain/zero/1.0/legalcode package main type errorJSON struct { Error string `json:"error"` } type infoJSON struct { Info string `json:"info"` } type objectIdJSON struct { Id string `json:"id"` }