| 181 | } |
| 182 | |
| 183 | type fileSyncer struct { |
| 184 | fp *os.File |
| 185 | } |
| 186 | |
| 187 | func (fs *fileSyncer) Write(p []byte) (n int, err error) { return fs.fp.Write(p) } |
| 188 | func (fs *fileSyncer) Close() error { |
nothing calls this directly
no outgoing calls
no test coverage detected