openFile is the desktop-specific way of opening a file
(url string)
| 400 | |
| 401 | // openFile is the desktop-specific way of opening a file |
| 402 | func openFile(url string) (io.ReadCloser, error) { |
| 403 | return os.Open(url) |
| 404 | } |
| 405 | |
| 406 | // IsAndroidChrome tells if the browser is Chrome for android |
| 407 | func IsAndroidChrome() bool { |