diff options
Diffstat (limited to 'app/lib/linking.js')
| -rw-r--r-- | app/lib/linking.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/lib/linking.js b/app/lib/linking.js new file mode 100644 index 0000000000..1d7a0a8d0a --- /dev/null +++ b/app/lib/linking.js @@ -0,0 +1,6 @@ +import { shell } from 'electron'; + +var open = (link) => { + shell.openExternal(link); +}; +export default open;
\ No newline at end of file |
