Fs represents a remote OneDrive
| 788 | |
| 789 | // Fs represents a remote OneDrive |
| 790 | type Fs struct { |
| 791 | name string // name of this remote |
| 792 | root string // the path we are working on |
| 793 | opt Options // parsed options |
| 794 | ci *fs.ConfigInfo // global config |
| 795 | features *fs.Features // optional features |
| 796 | srv *rest.Client // the connection to the OneDrive server |
| 797 | unAuth *rest.Client // no authentication connection to the OneDrive server |
| 798 | dirCache *dircache.DirCache // Map of directory path to directory id |
| 799 | pacer *fs.Pacer // pacer for API calls |
| 800 | tokenRenewer *oauthutil.Renew // renew the token on expiry |
| 801 | driveID string // ID to use for querying Microsoft Graph |
| 802 | driveType string // https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/resources/drive |
| 803 | hashType hash.Type // type of the hash we are using |
| 804 | } |
| 805 | |
| 806 | // Object describes a OneDrive object |
| 807 | // |
nothing calls this directly
no outgoing calls
no test coverage detected