From 6a4d638c1e62caf834a73ac4e3fcfc25bc32eedb Mon Sep 17 00:00:00 2001 From: Matt Holt Date: Thu, 19 Mar 2020 15:46:22 -0600 Subject: 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 --- modules/caddyhttp/matchers.go | 3 --- 1 file changed, 3 deletions(-) (limited to 'modules/caddyhttp/matchers.go') 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() { -- cgit v1.2.3