| 11 | var regEnLetterAndMidline = regexp.MustCompile(`^[\w-]+$`) |
| 12 | |
| 13 | type CheckConstraint struct { |
| 14 | Name string |
| 15 | Constraint string // length(phone) >= 10 |
| 16 | *Field |
| 17 | } |
| 18 | |
| 19 | func (chk *CheckConstraint) GetName() string { return chk.Name } |
| 20 |
nothing calls this directly
no outgoing calls
no test coverage detected