feat: Write cli executable as a go program (#4)

## Description

**What issue are you solving (or what feature are you adding) and how
are you doing it?**
I have opted to go with Golang as it has inbuilt support for writing
cross-platform executables unlike something like JS. And also, it has
support for running docker using the unix socket directly in code.
This commit is contained in:
Wanjohi
2024-06-25 03:41:05 +03:00
committed by GitHub
parent b1634c4e8d
commit d95b4a84cb
8 changed files with 309 additions and 21 deletions

11
main.go Normal file
View File

@@ -0,0 +1,11 @@
/*
Copyright © 2024 NAME HERE <EMAIL ADDRESS>
*/
package main
import "github.com/nestriness/cli/cmd"
func main() {
cmd.Execute()
}