openFile is the desktop-specific way of opening a file
(url string)
| 341 | |
| 342 | // openFile is the desktop-specific way of opening a file |
| 343 | func openFile(url string) (io.ReadCloser, error) { |
| 344 | return os.Open(url) |
| 345 | } |
| 346 | |
| 347 | // IsAndroidChrome tells if the browser is Chrome for android |
| 348 | func IsAndroidChrome() bool { |