2024-09-01 21:42:52 +02:00

19 lines
371 B
Go

package fields
import (
commondocumentation "config-lsp/common-documentation"
docvalues "config-lsp/doc-values"
)
var UserField = docvalues.UserValue("", false)
var PathField = docvalues.PathValue{
RequiredType: docvalues.PathTypeFile,
}
var CommandField = docvalues.StringValue{}
var EmailField = docvalues.RegexValue{
Regex: *commondocumentation.EmailRegex,
}