Main Gondole type will contain the OAuth token.
authorOllivier Robert <roberto@keltia.net>
Thu, 06 Apr 2017 23:36:00 +0200
changeset 25 9414cadcb717
parent 24 a01761bc5837
child 26 dbc7755fbcca
Main Gondole type will contain the OAuth token.
types.go
--- a/types.go	Thu Apr 06 23:35:21 2017 +0200
+++ b/types.go	Thu Apr 06 23:36:00 2017 +0200
@@ -5,8 +5,9 @@
 )
 
 type Gondole struct {
-	Name        string
-	RedirectURI string
+	Name   string
+	ID     int64
+	Secret string
 }
 
 type Client struct {