From 68fc973bfb5bf0644c51e1c013c7586eee5f67fd Mon Sep 17 00:00:00 2001 From: sammyette Date: Sun, 29 Dec 2024 01:35:01 -0400 Subject: [PATCH] fix: make runnerMode nil --- exec.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec.go b/exec.go index 19a5d2f..9819d15 100644 --- a/exec.go +++ b/exec.go @@ -16,7 +16,7 @@ import ( var errNotExec = errors.New("not executable") var errNotFound = errors.New("not found") -var runnerMode rt.Value = rt.StringValue("hybrid") +var runnerMode rt.Value = rt.NilValue func runInput(input string, priv bool) { running = true