GetUserCheckHash gets the hash used to determine whether to re-fetch the user ID.
()
| 238 | |
| 239 | // GetUserCheckHash gets the hash used to determine whether to re-fetch the user ID. |
| 240 | func (d DotRill) GetUserCheckHash() (string, error) { |
| 241 | return d.Get(StateFilename, UserCheckHashStateKey) |
| 242 | } |
| 243 | |
| 244 | // SetUserCheckHash sets the hash used to determine whether to re-fetch the user ID. |
| 245 | func (d DotRill) SetUserCheckHash(hash string) error { |