Work on #16: Support patterns

This commit is contained in:
TwinProduction
2020-10-01 19:57:11 -04:00
parent 18d3236586
commit 8101646ba5
5 changed files with 142 additions and 4 deletions

View File

@@ -13,8 +13,9 @@ const (
ResponseTimePlaceHolder = "[RESPONSE_TIME]"
BodyPlaceHolder = "[BODY]"
LengthFunctionPrefix = "len("
FunctionSuffix = ")"
LengthFunctionPrefix = "len("
PatternFunctionPrefix = "pat("
FunctionSuffix = ")"
InvalidConditionElementSuffix = "(INVALID)"
)