Write the content to uri
(content []byte, uri fyne.URIWriteCloser)
| 143 | |
| 144 | // Write the content to uri |
| 145 | func writeToURI(content []byte, uri fyne.URIWriteCloser) (n int, err error) { |
| 146 | defer uri.Close() |
| 147 | |
| 148 | return uri.Write(content) |
| 149 | } |
| 150 | |
| 151 | // Read the content from uri |
| 152 | func readFromURI(uri fyne.URIReadCloser) ([]byte, error) { |
no outgoing calls
no test coverage detected