(fileName string)
| 24 | } |
| 25 | |
| 26 | func (h *host) GetMTime(fileName string) time.Time { |
| 27 | return GetMTime(h.host, fileName) |
| 28 | } |
| 29 | |
| 30 | func (h *host) SetMTime(fileName string, mTime time.Time) error { |
| 31 | return h.host.FS().Chtimes(fileName, time.Time{}, mTime) |
nothing calls this directly
no test coverage detected