Files
hetty/proto/scope/scope.proto

13 lines
244 B
Protocol Buffer
Raw Permalink Normal View History

syntax = "proto3";
package hetty.scope.v1;
option go_package = "github.com/dstotijn/hetty/pkg/scope";
message ScopeRule {
string url_regexp = 1;
string header_key_regexp = 2;
string header_value_regexp = 3;
string body_regexp = 4;
}