Initial code commit

This commit is contained in:
2024-01-16 14:35:34 -05:00
parent c20c8bc349
commit af6600de80
12 changed files with 431 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
package main
import (
"os"
)
func main() {
args := os.Args[1:]
argsCount := len(args)
if argsCount == 0 {
EntryListGen()
} else if argsCount == 1 {
switch args[0] {
case "help", "--help", "-h":
HelpMain()
case "version", "-v":
Version()
default:
HelpMain()
}
}
}