`proto` allows you to define Protocol Buffers using Rust code to reuse Rust's type system and ecosystem.
```rust
use proto::proto;
fn main() {
// Define a Protocol Buffers service
let service = proto! {
};
tonic_build::manual::Builder::new()
}
```