| 18 | ) |
| 19 | |
| 20 | type ClientFilesyncMirror struct { |
| 21 | StableClientID string |
| 22 | Drive string |
| 23 | EphemeralID string |
| 24 | |
| 25 | mu sync.Mutex |
| 26 | |
| 27 | snapshot bkcache.MutableRef |
| 28 | |
| 29 | mounter bkcache.Mounter |
| 30 | mntPath string |
| 31 | |
| 32 | sharedState *filesync.MirrorSharedState |
| 33 | usageCount int |
| 34 | } |
| 35 | |
| 36 | var _ dagql.PersistedObject = (*ClientFilesyncMirror)(nil) |
| 37 | var _ dagql.PersistedObjectDecoder = (*ClientFilesyncMirror)(nil) |
nothing calls this directly
no outgoing calls
no test coverage detected