source: Main/branches/origin/version.go@ 4a5f10f

Last change on this file since 4a5f10f was 4a5f10f, checked in by www <www@…>, 8 weeks ago

Mirrored from https://git.chaotic.ninja/git/yakumo_izuru/yukari

git-svn-id: https://svn.chaotic.ninja/svn/yukari-yakumo.izuru@1 ee30ecee-8fc8-4245-a645-e3b2cc3919a6

  • Property mode set to 100644
File size: 300 bytes
Line 
1package yukari
2
3import (
4 "fmt"
5)
6
7var (
8 // Version release version
9 Version = "0.0.1"
10
11 // Commit will be overwritten automatically by the build system
12 Commit = "HEAD"
13)
14
15// FullVersion display the full version and build
16func FullVersion() string {
17 return fmt.Sprintf("%s@%s", Version, Commit)
18}
Note: See TracBrowser for help on using the repository browser.