package googleapi type GoogleClient interface { } type client struct { oauth GoogleOAuth } func NewGoogleClient(oauth GoogleOAuth) GoogleClient { return &client{ oauth: oauth, } }