aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/minikql/jsonpath/rewrapper/proto/serialization.proto
blob: 922ec74b26e7366f8392a896a75e9410760a370a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
syntax = "proto3";

package NReWrapper;

message TRe2Serialization {
    string Regexp = 1;
    uint64 Flags = 2;
};

message TSerialization {
    oneof Data {
        bytes Hyperscan = 1;
        TRe2Serialization Re2 = 2;
    }
};