openFile is the desktop-specific way of opening a file
(url string)
| 360 | |
| 361 | // openFile is the desktop-specific way of opening a file |
| 362 | func openFile(url string) (io.ReadCloser, error) { |
| 363 | return os.Open(url) |
| 364 | } |
| 365 | |
| 366 | // IsAndroidChrome tells if the browser is Chrome for android |
| 367 | func IsAndroidChrome() bool { |