feat: initial implementation #5

Merged
jank merged 21 commits from main into release 2025-04-09 16:25:18 +00:00
Showing only changes of commit da4a8b3030 - Show all commits

View file

@ -2,6 +2,15 @@ const childProcess = require('child_process')
const path = require('path')
function runGo() {
childProcess.spawnSync(
'ls',
["-la"],
{
cwd: __dirname,
stdio: 'inherit',
shell: true,
},
)
const goProcess = childProcess.spawnSync(
'go',
['run', '.'],