summaryrefslogtreecommitdiff
path: root/modules/caddyhttp/matchers.go
diff options
context:
space:
mode:
authorMatt Holt <mholt@users.noreply.github.com>2020-03-19 15:46:22 -0600
committerGitHub <noreply@github.com>2020-03-19 15:46:22 -0600
commit6a4d638c1e62caf834a73ac4e3fcfc25bc32eedb (patch)
tree2777f8f0669f22ac260a75dcd8ab21775a512188 /modules/caddyhttp/matchers.go
parentaa6c5fde07574b48593ddcbf95ca6988c2172b4a (diff)
caddyhttp: Implement CEL matcher (see #3051) (#3155)
* caddyhttp: Implement CEL matcher (see #3051) CEL (Common Expression Language) is a very fast, flexible way to express complex logic, useful for matching requests when the conditions are not easy to express with JSON. This matcher may be considered experimental even after the 2.0 release. * Improve CEL module docs
Diffstat (limited to 'modules/caddyhttp/matchers.go')
-rw-r--r--modules/caddyhttp/matchers.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/modules/caddyhttp/matchers.go b/modules/caddyhttp/matchers.go
index 6bfb31e..043831f 100644
--- a/modules/caddyhttp/matchers.go
+++ b/modules/caddyhttp/matchers.go
@@ -107,9 +107,6 @@ type (
Matchers MatcherSet `json:"-"`
}
-
- // MatchTable matches requests by values in the table.
- MatchTable string // TODO: finish implementing
)
func init() {