You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
216 B

2 years ago
3 years ago
3 years ago
5 years ago
  1. package util
  2. import (
  3. "fmt"
  4. )
  5. var (
  6. VERSION_NUMBER = fmt.Sprintf("%.02f", 3.49)
  7. VERSION = sizeLimit + " " + VERSION_NUMBER
  8. COMMIT = ""
  9. )
  10. func Version() string {
  11. return VERSION + " " + COMMIT
  12. }