goext/googleapi/service.go

15 lines
188 B
Go

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