Skip to content

Commit

Permalink
feat: version
Browse files Browse the repository at this point in the history
  • Loading branch information
waldirborbajr committed Feb 26, 2024
1 parent 017f0ca commit 6706eb0
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
package main

import (
"fmt"
"log"
"os"

"github.com/waldirborbajr/glink/glinkcli"
)

var version = "dev"
var (
version = "0.1.0"
revision = "dev"
)

func main() {
app := glinkcli.App(version)
app := glinkcli.App(version, revision)
if err := app.Run(os.Args); err != nil {
log.Fatal(err)
}
fmt.Println("glink v 0.1.1")
}

0 comments on commit 6706eb0

Please sign in to comment.