1
0
mirror of https://github.com/pavlobu/deskreen.git synced 2025-05-19 00:40:11 -07:00
2020-09-24 19:06:07 +03:00

11 lines
191 B
TypeScript

/* eslint-disable import/prefer-default-export */
export const remote = {
getGlobal: (name: string) => {
if (name === 'appPath') {
return __dirname;
}
return '';
},
};