Initial commit. The shell now combiles and runs.

This commit is contained in:
Kalzu Rekku
2025-10-05 20:03:35 +03:00
commit 3ae9395f9d
4 changed files with 843 additions and 0 deletions

14
go.mod Normal file
View File

@@ -0,0 +1,14 @@
module kvs-shell
go 1.21
require (
github.com/chzyer/readline v1.5.1
github.com/fatih/color v1.16.0
)
require (
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
golang.org/x/sys v0.14.0 // indirect
)