Read returns the session token for the given server URL or an error, if any. It will return os.ErrNotExist if no token exists for the given URL.
(serverURL *url.URL)
| 27 | // Read returns the session token for the given server URL or an error, if any. It |
| 28 | // will return os.ErrNotExist if no token exists for the given URL. |
| 29 | Read(serverURL *url.URL) (string, error) |
| 30 | // Write stores the session token for the given server URL. |
| 31 | Write(serverURL *url.URL, token string) error |
| 32 | // Delete removes the session token for the given server URL or an error, if any. |
no outgoing calls