mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-12-28 11:24:11 +08:00
6 lines
147 B
JavaScript
6 lines
147 B
JavaScript
const proc = require('child_process');
|
|
|
|
// TODO: Swtich on env variables
|
|
proc.spawn('node', ['packages/nylas-api/app.js'], {
|
|
stdio: 'inherit'
|
|
})
|