diff --git a/README.md b/README.md index eac13c7..450a11e 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,8 @@ ### `.proto` definition +It's not needed for `pure-protobuf`, but for the sake of an example, let's consider the following definition: + ```protobuf syntax = "proto3"; @@ -33,6 +35,8 @@ message SearchRequest { } ``` +And here's the same via `pure-protobuf`: + ### With [dataclasses](https://docs.python.org/3/library/dataclasses.html) ```python title="dataclass_example.py"