Remove unused code

This commit is contained in:
Kovid Goyal 2023-08-05 10:11:15 +05:30
parent ec77d051df
commit a3369465dc
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -8,18 +8,8 @@ import (
"io"
"os"
"strings"
"kitty/tools/tty"
)
func debug(args ...any) {
tty.DebugPrintln(args...)
}
func debugf(format string, args ...any) {
debug(fmt.Sprintf(format, args...))
}
func json_input_parser(data []byte, shell_state map[string]string) ([][]string, error) {
ans := make([][]string, 0, 32)
err := json.Unmarshal(data, &ans)