├── .github └── workflows │ └── actions.yaml ├── .gitignore ├── LICENSE ├── README.md ├── errors.go ├── errors_test.go ├── factory.go ├── go.mod ├── go.sum ├── marshaling.go ├── marshaling_test.go ├── proto ├── error.pb.go └── error.proto ├── stack ├── stack.go └── stack_test.go └── vendor ├── github.com ├── davecgh │ └── go-spew │ │ ├── LICENSE │ │ └── spew │ │ ├── bypass.go │ │ ├── bypasssafe.go │ │ ├── common.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── dump.go │ │ ├── format.go │ │ └── spew.go ├── golang │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ └── proto │ │ ├── buffer.go │ │ ├── defaults.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── extensions.go │ │ ├── properties.go │ │ ├── proto.go │ │ ├── registry.go │ │ ├── text_decode.go │ │ ├── text_encode.go │ │ ├── wire.go │ │ └── wrappers.go ├── pmezard │ └── go-difflib │ │ ├── LICENSE │ │ └── difflib │ │ └── difflib.go └── stretchr │ └── testify │ ├── LICENSE │ └── assert │ ├── assertion_compare.go │ ├── assertion_format.go │ ├── assertion_format.go.tmpl │ ├── assertion_forward.go │ ├── assertion_forward.go.tmpl │ ├── assertions.go │ ├── doc.go │ ├── errors.go │ ├── forward_assertions.go │ └── http_assertions.go ├── google.golang.org └── protobuf │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── encoding │ ├── prototext │ │ ├── decode.go │ │ ├── doc.go │ │ └── encode.go │ └── protowire │ │ └── wire.go │ ├── internal │ ├── descfmt │ │ └── stringer.go │ ├── descopts │ │ └── options.go │ ├── detrand │ │ └── rand.go │ ├── encoding │ │ ├── defval │ │ │ └── default.go │ │ ├── messageset │ │ │ └── messageset.go │ │ ├── tag │ │ │ └── tag.go │ │ └── text │ │ │ ├── decode.go │ │ │ ├── decode_number.go │ │ │ ├── decode_string.go │ │ │ ├── decode_token.go │ │ │ ├── doc.go │ │ │ └── encode.go │ ├── errors │ │ ├── errors.go │ │ ├── is_go112.go │ │ └── is_go113.go │ ├── fieldsort │ │ └── fieldsort.go │ ├── filedesc │ │ ├── build.go │ │ ├── desc.go │ │ ├── desc_init.go │ │ ├── desc_lazy.go │ │ ├── desc_list.go │ │ ├── desc_list_gen.go │ │ └── placeholder.go │ ├── filetype │ │ └── build.go │ ├── flags │ │ ├── flags.go │ │ ├── proto_legacy_disable.go │ │ └── proto_legacy_enable.go │ ├── genid │ │ ├── any_gen.go │ │ ├── api_gen.go │ │ ├── descriptor_gen.go │ │ ├── doc.go │ │ ├── duration_gen.go │ │ ├── empty_gen.go │ │ ├── field_mask_gen.go │ │ ├── goname.go │ │ ├── map_entry.go │ │ ├── source_context_gen.go │ │ ├── struct_gen.go │ │ ├── timestamp_gen.go │ │ ├── type_gen.go │ │ ├── wrappers.go │ │ └── wrappers_gen.go │ ├── impl │ │ ├── api_export.go │ │ ├── checkinit.go │ │ ├── codec_extension.go │ │ ├── codec_field.go │ │ ├── codec_gen.go │ │ ├── codec_map.go │ │ ├── codec_map_go111.go │ │ ├── codec_map_go112.go │ │ ├── codec_message.go │ │ ├── codec_messageset.go │ │ ├── codec_reflect.go │ │ ├── codec_tables.go │ │ ├── codec_unsafe.go │ │ ├── convert.go │ │ ├── convert_list.go │ │ ├── convert_map.go │ │ ├── decode.go │ │ ├── encode.go │ │ ├── enum.go │ │ ├── extension.go │ │ ├── legacy_enum.go │ │ ├── legacy_export.go │ │ ├── legacy_extension.go │ │ ├── legacy_file.go │ │ ├── legacy_message.go │ │ ├── merge.go │ │ ├── merge_gen.go │ │ ├── message.go │ │ ├── message_reflect.go │ │ ├── message_reflect_field.go │ │ ├── message_reflect_gen.go │ │ ├── pointer_reflect.go │ │ ├── pointer_unsafe.go │ │ ├── validate.go │ │ └── weak.go │ ├── mapsort │ │ └── mapsort.go │ ├── pragma │ │ └── pragma.go │ ├── set │ │ └── ints.go │ ├── strs │ │ ├── strings.go │ │ ├── strings_pure.go │ │ └── strings_unsafe.go │ └── version │ │ └── version.go │ ├── proto │ ├── checkinit.go │ ├── decode.go │ ├── decode_gen.go │ ├── doc.go │ ├── encode.go │ ├── encode_gen.go │ ├── equal.go │ ├── extension.go │ ├── merge.go │ ├── messageset.go │ ├── proto.go │ ├── proto_methods.go │ ├── proto_reflect.go │ ├── reset.go │ ├── size.go │ ├── size_gen.go │ └── wrappers.go │ ├── reflect │ ├── protoreflect │ │ ├── methods.go │ │ ├── proto.go │ │ ├── source.go │ │ ├── type.go │ │ ├── value.go │ │ ├── value_pure.go │ │ ├── value_union.go │ │ └── value_unsafe.go │ └── protoregistry │ │ └── registry.go │ └── runtime │ ├── protoiface │ ├── legacy.go │ └── methods.go │ └── protoimpl │ ├── impl.go │ └── version.go ├── gopkg.in └── yaml.v3 │ ├── .travis.yml │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── emitterc.go │ ├── encode.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go └── modules.txt /.github/workflows/actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/.github/workflows/actions.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/README.md -------------------------------------------------------------------------------- /errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/errors.go -------------------------------------------------------------------------------- /errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/errors_test.go -------------------------------------------------------------------------------- /factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/factory.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/go.sum -------------------------------------------------------------------------------- /marshaling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/marshaling.go -------------------------------------------------------------------------------- /marshaling_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/marshaling_test.go -------------------------------------------------------------------------------- /proto/error.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/proto/error.pb.go -------------------------------------------------------------------------------- /proto/error.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/proto/error.proto -------------------------------------------------------------------------------- /stack/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/stack/stack.go -------------------------------------------------------------------------------- /stack/stack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/stack/stack_test.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/bypass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/davecgh/go-spew/spew/bypass.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/bypasssafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/davecgh/go-spew/spew/bypasssafe.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/davecgh/go-spew/spew/common.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/davecgh/go-spew/spew/config.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/davecgh/go-spew/spew/doc.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/davecgh/go-spew/spew/dump.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/davecgh/go-spew/spew/format.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/spew/spew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/davecgh/go-spew/spew/spew.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/golang/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/golang/protobuf/proto/buffer.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/golang/protobuf/proto/defaults.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/deprecated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/golang/protobuf/proto/deprecated.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/discard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/golang/protobuf/proto/discard.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/extensions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/golang/protobuf/proto/extensions.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/golang/protobuf/proto/properties.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/golang/protobuf/proto/proto.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/golang/protobuf/proto/registry.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/text_decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/golang/protobuf/proto/text_decode.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/text_encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/golang/protobuf/proto/text_encode.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/golang/protobuf/proto/wire.go -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/proto/wrappers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/golang/protobuf/proto/wrappers.go -------------------------------------------------------------------------------- /vendor/github.com/pmezard/go-difflib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/pmezard/go-difflib/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pmezard/go-difflib/difflib/difflib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/pmezard/go-difflib/difflib/difflib.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/stretchr/testify/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/stretchr/testify/assert/assertion_compare.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/stretchr/testify/assert/assertion_format.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_format.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/stretchr/testify/assert/assertion_format.go.tmpl -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/stretchr/testify/assert/assertion_forward.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertion_forward.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/stretchr/testify/assert/assertion_forward.go.tmpl -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/stretchr/testify/assert/assertions.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/stretchr/testify/assert/doc.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/stretchr/testify/assert/errors.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/forward_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/stretchr/testify/assert/forward_assertions.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/assert/http_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/github.com/stretchr/testify/assert/http_assertions.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/PATENTS -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/encoding/prototext/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/encoding/prototext/decode.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/encoding/prototext/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/encoding/prototext/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/encoding/prototext/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/encoding/prototext/encode.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/encoding/protowire/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/encoding/protowire/wire.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/descfmt/stringer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/descfmt/stringer.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/descopts/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/descopts/options.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/detrand/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/detrand/rand.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/encoding/defval/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/encoding/defval/default.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/encoding/messageset/messageset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/encoding/messageset/messageset.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/encoding/tag/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/encoding/tag/tag.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/encoding/text/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/encoding/text/decode.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/encoding/text/decode_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/encoding/text/decode_number.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/encoding/text/decode_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/encoding/text/decode_string.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/encoding/text/decode_token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/encoding/text/decode_token.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/encoding/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/encoding/text/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/encoding/text/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/encoding/text/encode.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/errors/errors.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/errors/is_go112.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/errors/is_go112.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/errors/is_go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/errors/is_go113.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/fieldsort/fieldsort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/fieldsort/fieldsort.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/filedesc/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/filedesc/build.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/filedesc/desc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/filedesc/desc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/filedesc/desc_init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/filedesc/desc_init.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/filedesc/desc_lazy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/filedesc/desc_lazy.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/filedesc/desc_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/filedesc/desc_list.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/filedesc/desc_list_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/filedesc/desc_list_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/filedesc/placeholder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/filedesc/placeholder.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/filetype/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/filetype/build.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/flags/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/flags/flags.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/flags/proto_legacy_disable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/flags/proto_legacy_disable.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/flags/proto_legacy_enable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/flags/proto_legacy_enable.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/any_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/genid/any_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/api_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/genid/api_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/genid/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/duration_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/genid/duration_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/empty_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/genid/empty_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/field_mask_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/genid/field_mask_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/goname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/genid/goname.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/map_entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/genid/map_entry.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/source_context_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/genid/source_context_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/struct_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/genid/struct_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/timestamp_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/genid/timestamp_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/type_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/genid/type_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/wrappers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/genid/wrappers.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/genid/wrappers_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/genid/wrappers_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/api_export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/api_export.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/checkinit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/checkinit.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/codec_extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/codec_extension.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/codec_field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/codec_field.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/codec_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/codec_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/codec_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/codec_map.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/codec_map_go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/codec_map_go111.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/codec_map_go112.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/codec_map_go112.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/codec_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/codec_message.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/codec_messageset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/codec_messageset.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/codec_reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/codec_reflect.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/codec_tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/codec_tables.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/codec_unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/codec_unsafe.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/convert.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/convert_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/convert_list.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/convert_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/convert_map.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/decode.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/encode.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/enum.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/extension.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/legacy_enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/legacy_enum.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/legacy_export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/legacy_export.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/legacy_extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/legacy_extension.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/legacy_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/legacy_file.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/legacy_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/legacy_message.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/merge.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/merge_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/merge_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/message.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/message_reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/message_reflect.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/message_reflect_field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/message_reflect_field.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/message_reflect_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/message_reflect_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/pointer_reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/pointer_reflect.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/pointer_unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/pointer_unsafe.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/validate.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/impl/weak.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/impl/weak.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/mapsort/mapsort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/mapsort/mapsort.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/pragma/pragma.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/pragma/pragma.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/set/ints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/set/ints.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/strs/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/strs/strings.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/strs/strings_pure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/strs/strings_pure.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/strs/strings_unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/strs/strings_unsafe.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/internal/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/internal/version/version.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/checkinit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/proto/checkinit.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/proto/decode.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/decode_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/proto/decode_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/proto/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/proto/encode.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/encode_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/proto/encode_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/proto/equal.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/proto/extension.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/proto/merge.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/messageset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/proto/messageset.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/proto/proto.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/proto_methods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/proto/proto_methods.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/proto_reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/proto/proto_reflect.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/reset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/proto/reset.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/proto/size.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/size_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/proto/size_gen.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/proto/wrappers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/proto/wrappers.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/reflect/protoreflect/methods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/reflect/protoreflect/methods.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/reflect/protoreflect/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/reflect/protoreflect/proto.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/reflect/protoreflect/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/reflect/protoreflect/source.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/reflect/protoreflect/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/reflect/protoreflect/type.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/reflect/protoreflect/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/reflect/protoreflect/value.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/reflect/protoreflect/value_pure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/reflect/protoreflect/value_pure.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/reflect/protoreflect/value_union.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/reflect/protoreflect/value_union.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/reflect/protoreflect/value_unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/reflect/protoreflect/value_unsafe.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/reflect/protoregistry/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/reflect/protoregistry/registry.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/runtime/protoiface/legacy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/runtime/protoiface/legacy.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/runtime/protoiface/methods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/runtime/protoiface/methods.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/runtime/protoimpl/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/runtime/protoimpl/impl.go -------------------------------------------------------------------------------- /vendor/google.golang.org/protobuf/runtime/protoimpl/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/google.golang.org/protobuf/runtime/protoimpl/version.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/gopkg.in/yaml.v3/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/gopkg.in/yaml.v3/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monzo/terrors/HEAD/vendor/modules.txt --------------------------------------------------------------------------------