2024-05-01 07:10:11 +02:00
|
|
|
// Copyright (c) 2024 Celestino Amoroso (celestino.amoroso@gmail.com).
|
|
|
|
// All rights reserved.
|
|
|
|
|
|
|
|
// common-params.go
|
|
|
|
package expr
|
|
|
|
|
|
|
|
const (
|
2024-06-09 10:13:37 +02:00
|
|
|
ParamCount = "count"
|
|
|
|
ParamItem = "item"
|
|
|
|
ParamParts = "parts"
|
|
|
|
ParamSeparator = "separator"
|
|
|
|
ParamSource = "source"
|
|
|
|
ParamSuffix = "suffix"
|
|
|
|
ParamPrefix = "prefix"
|
|
|
|
ParamStart = "start"
|
|
|
|
ParamEnd = "end"
|
|
|
|
ParamValue = "value"
|
|
|
|
ParamEllipsis = "..."
|
|
|
|
ParamFilepath = "filepath"
|
|
|
|
ParamDirpath = "dirpath"
|
2024-05-01 07:10:11 +02:00
|
|
|
)
|