ms-runner/main.go

18 lines
242 B
Go
Raw Normal View History

2024-06-20 16:41:25 +00:00
package main
import (
//"os"
//"fmt"
//"log"
//exec "os/exec"
runner "runner/runner"
)
func main() {
err:=runner.Init()
if(err!=nil) {
panic(err)
}
//runner.IsolatedRun(exec.Command("ls", "/"))
}