add TL support

This commit is contained in:
root 2024-06-21 00:00:10 +05:00
parent 5c9bc19af4
commit 505431fedc
3 changed files with 39 additions and 12 deletions

View file

@ -83,7 +83,7 @@ func Init() error {
func IsolatedRun(command []string,core int) {
var runId string
for i:=0;i<runIdLength;i++{
runId+=string('a'+byte(rand.Int31n(26)))
}
for i:=0;i<runIdLength;i++{runId+=string('a'+byte(rand.Int31n(26)))}
os.mkdir("starter/"+runId,0777);
exec.Command("starter/starter", );
}