add oauth flow routes

This commit is contained in:
Jay
2019-12-28 14:38:38 +00:00
parent 369e8d3f6e
commit 6ff437be99
10 changed files with 367 additions and 13 deletions
+9
View File
@@ -0,0 +1,9 @@
package types
// GoogleAuthToken -
type GoogleAuthToken struct {
AccessToken string `json:"access_token"`
RefreshToken string `json:"refresh_token,omitempty"`
ExpiresIn int64 `json:"expires_in"`
TokenType string `json:"token_type"`
}