add version to filer

This commit is contained in:
chrislu
2024-07-21 20:13:51 -07:00
parent 9dcc576499
commit 9dd008f8f1
5 changed files with 352 additions and 323 deletions

View File

@@ -7,7 +7,9 @@ import (
const HttpStatusCancelled = 499
var (
VERSION_NUMBER = fmt.Sprintf("%.02f", 3.69)
MAJOR_VERSION = int32(3)
MINOR_VERSION = int32(69)
VERSION_NUMBER = fmt.Sprintf("%d.%02d", MAJOR_VERSION, MINOR_VERSION)
VERSION = sizeLimit + " " + VERSION_NUMBER
COMMIT = ""
)