| 15 | ) |
| 16 | |
| 17 | type osSys struct { |
| 18 | writer io.Writer |
| 19 | fs vfs.FS |
| 20 | defaultLibraryPath string |
| 21 | cwd string |
| 22 | start time.Time |
| 23 | } |
| 24 | |
| 25 | func (s *osSys) SinceStart() time.Duration { |
| 26 | return time.Since(s.start) |
nothing calls this directly
no outgoing calls
no test coverage detected