Hello, I'd like to use gomock to mock the Twilio requests and responses in tests. This requires an interface corresponding to type Twilio struct and all its methods func (twilio *Twilio) .... What do you think of adding this interface to the gotwilio package?
Hello, I'd like to use gomock to mock the Twilio requests and responses in tests. This requires an interface corresponding to
type Twilio struct
and all its methodsfunc (twilio *Twilio) ...
. What do you think of adding this interface to thegotwilio
package?