Read the content from uri
(uri fyne.URIReadCloser)
| 150 | |
| 151 | // Read the content from uri |
| 152 | func readFromURI(uri fyne.URIReadCloser) ([]byte, error) { |
| 153 | defer uri.Close() |
| 154 | |
| 155 | return io.ReadAll(uri) |
| 156 | } |
no outgoing calls
no test coverage detected