Skip to content

Commit

Permalink
chore: add version.go
Browse files Browse the repository at this point in the history
  • Loading branch information
iret-kawashima committed Nov 30, 2023
1 parent 41a909c commit 529f076
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
6 changes: 0 additions & 6 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,6 @@ import (
"os"
)

const (
Name = "alpen"
Version = "0.0.11"
Revision = "HEAD"
)

func main() {
if err := newApp().run(); err != nil {
fmt.Fprintln(os.Stderr, err)
Expand Down
7 changes: 7 additions & 0 deletions version.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package main

const Name = "alpen"

const Version = "0.0.11"

var Revision = "HEAD"

0 comments on commit 529f076

Please sign in to comment.