source: main/trunk/version.go

Last change on this file was 6bbceb9, checked in by www <www@…>, 8 weeks ago

Mirrored from yuuka.git

git-svn-id: https://svn.chaotic.ninja/svn/yuuka-yakumo.izuru@1 0f3ee07c-c614-0a4d-b2a1-86c95f6ad348

  • Property mode set to 100644
File size: 371 bytes
Line 
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.