| 24 | ) |
| 25 | |
| 26 | type Runner struct { |
| 27 | client *codersdk.Client |
| 28 | cfg Config |
| 29 | |
| 30 | createUserRunner *createusers.Runner |
| 31 | workspacebuildRunners []*workspacebuild.Runner |
| 32 | |
| 33 | // workspace name to workspace |
| 34 | workspaces map[string]*workspace |
| 35 | } |
| 36 | |
| 37 | type workspace struct { |
| 38 | buildStartTime time.Time |
nothing calls this directly
no outgoing calls
no test coverage detected