google mail API [[[WIP]]]

This commit is contained in:
2023-12-01 18:33:04 +01:00
parent 8f15d42173
commit 8f13eb2f16
6 changed files with 325 additions and 0 deletions

14
googleapi/service.go Normal file
View File

@@ -0,0 +1,14 @@
package googleapi
type GoogleClient interface {
}
type client struct {
oauth GoogleOAuth
}
func NewGoogleClient(oauth GoogleOAuth) GoogleClient {
return &client{
oauth: oauth,
}
}