We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9507603 commit c15cd57Copy full SHA for c15cd57
client.go
@@ -39,15 +39,6 @@ func New(AccessKey string) *Client {
39
return &Client{AccessKey: AccessKey, HTTPClient: &http.Client{}}
40
}
41
42
-// New creates a new MessageBird client object.
43
-func NewDebug(AccessKey string) *Client {
44
- return &Client{
45
- AccessKey: AccessKey,
46
- HTTPClient: &http.Client{},
47
- DebugLog: log.New(os.Stdout, "DEBUG", log.Lshortfile),
48
- }
49
-}
50
-
51
func (c *Client) request(v interface{}, path string, params *url.Values) error {
52
uri, err := url.Parse(Endpoint + "/" + path)
53
if err != nil {
0 commit comments