├── LICENSE ├── Makefile ├── README.md ├── assets └── demo.gif ├── go.mod └── main.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvicennaJr/ShellMate/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvicennaJr/ShellMate/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvicennaJr/ShellMate/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvicennaJr/ShellMate/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/AvicennaJr/ShellMate 2 | 3 | go 1.20 4 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvicennaJr/ShellMate/HEAD/main.go --------------------------------------------------------------------------------