common-params.go: added the constant ConstLastIndex

This commit is contained in:
Celestino Amoroso 2024-06-19 09:17:46 +02:00
parent 62ef0d699d
commit 302430d57d

View File

@ -20,3 +20,8 @@ const (
ParamFilepath = "filepath" ParamFilepath = "filepath"
ParamDirpath = "dirpath" ParamDirpath = "dirpath"
) )
// to be moved in its own source file
const (
ConstLastIndex = 0xFFFF_FFFF
)