mirror of
https://github.com/Myzel394/config-lsp.git
synced 2025-06-18 23:15:26 +02:00
19 lines
371 B
Go
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,
|
|
}
|