Run represents an orphan scan run.
| 83 | |
| 84 | // Run represents an orphan scan run. |
| 85 | type Run struct { |
| 86 | ID int64 |
| 87 | InstanceID int |
| 88 | Status RunStatus |
| 89 | TriggeredBy TriggerType |
| 90 | ScanPaths []string |
| 91 | FilesFound int |
| 92 | FilesDeleted int |
| 93 | FoldersDeleted int |
| 94 | BytesReclaimed int64 |
| 95 | Truncated bool |
| 96 | ErrorMessage string |
| 97 | StartedAt time.Time |
| 98 | CompletedAt *time.Time |
| 99 | } |
| 100 | |
| 101 | // ScanResult holds the results of a directory scan. |
| 102 | type ScanResult struct { |
nothing calls this directly
no outgoing calls
no test coverage detected