mirror of
https://github.com/dstotijn/hetty.git
synced 2025-07-01 10:37:30 -04:00
11 lines
209 B
Go
11 lines
209 B
Go
package intercept
|
|
|
|
import "github.com/dstotijn/hetty/pkg/filter"
|
|
|
|
type Settings struct {
|
|
RequestsEnabled bool
|
|
ResponsesEnabled bool
|
|
RequestFilter filter.Expression
|
|
ResponseFilter filter.Expression
|
|
}
|