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.

17 lines
249 B

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