31 lines
661 B
Go
31 lines
661 B
Go
// Copyright (c) 2024 Celestino Amoroso (celestino.amoroso@gmail.com).
|
|
// All rights reserved.
|
|
|
|
// common-params.go
|
|
package expr
|
|
|
|
const (
|
|
paramCount = "count"
|
|
paramItem = "item"
|
|
paramParts = "parts"
|
|
paramSeparator = "separator"
|
|
paramSource = "source"
|
|
paramSuffix = "suffix"
|
|
paramPrefix = "prefix"
|
|
paramStart = "start"
|
|
paramEnd = "end"
|
|
paramValue = "value"
|
|
paramEllipsis = "..."
|
|
typeFilepath = "filepath"
|
|
typeDirpath = "dirpath"
|
|
)
|
|
|
|
// const (
|
|
// typeInteger = "int"
|
|
// typeFloat = "float"
|
|
// typeString = "string"
|
|
// typeFraction = "fract"
|
|
// typeList = "list"
|
|
// typeDict = "dict"
|
|
// )
|