1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
pub mod proto {
    pub mod rpc {
        pub mod webrtc {
            pub mod v1 {
                include!("proto.rpc.webrtc.v1.rs");
                include!("proto.rpc.webrtc.v1.tonic.rs");
            }
        }
        pub mod examples {
            pub mod echo {
                pub mod v1 {
                    include!("proto.rpc.examples.echo.v1.rs");
                    include!("proto.rpc.examples.echo.v1.tonic.rs");
                }
            }
            pub mod echoresource {
                pub mod v1 {
                    include!("proto.rpc.examples.echoresource.v1.rs");
                    include!("proto.rpc.examples.echoresource.v1.tonic.rs");
                }
            }
        }
        pub mod v1 {
            include!("proto.rpc.v1.rs");
            include!("proto.rpc.v1.tonic.rs");
        }
    }
}
pub mod google {
    pub mod rpc {
        include!("google.rpc.rs");
    }
    pub mod api {
        include!("google.api.rs");
    }
}