Function
WriteToFile
(w io.Writer, str string)
Source from the content-addressed store, hash-verified
| 23 | } |
| 24 | |
| 25 | func WriteToFile(w io.Writer, str string) { |
| 26 | _, err := w.Write([]byte(str)) |
| 27 | if err != nil { |
| 28 | log.Println(err) |
| 29 | } |
| 30 | } |
Callers
nothing calls this directly
Tested by
no test coverage detected