File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -88,29 +88,29 @@ func (a *oauth) getNewToken() error {
88
88
return nil
89
89
}
90
90
91
- // TODO migrate strings
91
+ // TODO func comment
92
92
func (a * oauth ) getTokenString () string {
93
93
return a .token
94
94
}
95
95
96
- // TODO migrate strings
96
+ // TODO func comment
97
97
func (a * oauth ) getExpiryTime () time.Time {
98
98
return a .expiryTime
99
99
}
100
100
101
101
// Utils
102
102
103
- // TODO migrate strings
103
+ // TODO func comment
104
104
func (a * oauth ) tokenExpired () bool {
105
105
return a .expiryTime .Before (time .Now ())
106
106
}
107
107
108
- // TODO migrate strings
108
+ // TODO func comment
109
109
func (a * oauth ) tokenInBuffer () bool {
110
110
return time .Until (a .expiryTime ) <= a .bufferPeriod
111
111
}
112
112
113
- // TODO migrate strings
113
+ // TODO func comment
114
114
func (a * oauth ) tokenEmpty () bool {
115
115
return a .token == ""
116
116
}
You can’t perform that action at this time.
0 commit comments