Files
hetty/pkg/proxy/intercept/settings.go

11 lines
209 B
Go
Raw Permalink Normal View History

2022-03-14 15:42:43 +01:00
package intercept
2022-03-15 19:32:29 +01:00
import "github.com/dstotijn/hetty/pkg/search"
2022-03-14 15:42:43 +01:00
type Settings struct {
2022-03-21 10:33:11 +01:00
RequestsEnabled bool
ResponsesEnabled bool
RequestFilter search.Expression
ResponseFilter search.Expression
2022-03-14 15:42:43 +01:00
}