Skip to content

Commit

Permalink
added preilinary version info
Browse files Browse the repository at this point in the history
  • Loading branch information
Nonlinearsound committed Sep 12, 2021
1 parent bda2092 commit bea06d1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ func PrintBlock(block *Block) {
}

func main() {
version := "Version 0.002"
var blocks []Block
var keyValueStore [][]string

Expand All @@ -69,7 +70,7 @@ func main() {

c := color.New(color.FgWhite).Add(color.Bold)
flag.Usage = func() {
fmt.Println("cst - the command shell template parser - ALPHA version 0.001\n") // redundant newline ok
fmt.Println("cst - the command shell template parser - ALPHA version", version, "\n") // redundant newline ok
fmt.Println(" cst -i <input filepath> -o <output filepath> [-k <key-value file path>] [-v]\n")
c.Println("DESCRIPTION")
fmt.Println("cst is a command line template parser that uses comma seperated files (csv) as it's data source.")
Expand Down

0 comments on commit bea06d1

Please sign in to comment.