start beta versioning

This commit is contained in:
2025-12-16 18:41:38 -05:00
parent 10da72a1f6
commit e2c6f15e5b
3 changed files with 28 additions and 4 deletions

15
src/version/version.go Normal file
View File

@@ -0,0 +1,15 @@
package version
import (
"fmt"
"os"
)
const PROGRAM_NAME string = "fes"
const PROGRAM_NAME_LONG string = "fes/fSD"
const VERSION string = "beta"
func Version() {
fmt.Printf("%s version %s\n", PROGRAM_NAME_LONG, VERSION)
os.Exit(0)
}