source: code/trunk/version.go@ 2

Last change on this file since 2 was 2, checked in by Izuru Yakumo, 2 years ago

Power levels keep increasing widly -- to be expected

Signed-off-by: Izuru Yakumo <yakumo.izuru@…>

File size: 371 bytes
RevLine 
[2]1// $TheSupernovaDuo: yuuka,v 0.1.1 2023/5/29 18:19:14 yakumo_izuru Exp $
2package main
3
4import (
5 "fmt"
6)
7
8var (
9 // Version release version
10 Version = "0.0.1"
11
12 // Commit will be overwritten automatically by the build system
13 Commit = "HEAD"
14)
15
16// FullVersion display the full version and build
17func FullVersion() string {
18 return fmt.Sprintf("%s@%s", Version, Commit)
19}
Note: See TracBrowser for help on using the repository browser.