1#![allow(clippy::allow_attributes)]
3
4pub mod common {
5 pub mod v1 {
6 #![allow(
7 clippy::all,
8 dead_code,
9 non_camel_case_types,
10 non_snake_case,
11 non_upper_case_globals,
12 unfulfilled_lint_expectations,
13 unused_imports,
14 unused_variables
15 )]
16 tonic::include_proto!("steer.common.v1");
17 }
18}
19
20pub mod agent {
21 pub mod v1 {
22 #![allow(
23 clippy::all,
24 dead_code,
25 non_camel_case_types,
26 non_snake_case,
27 non_upper_case_globals,
28 unfulfilled_lint_expectations,
29 unused_imports,
30 unused_variables
31 )]
32 tonic::include_proto!("steer.agent.v1");
33 }
34}
35
36pub mod remote_workspace {
37 pub mod v1 {
38 #![allow(
39 clippy::all,
40 dead_code,
41 non_camel_case_types,
42 non_snake_case,
43 non_upper_case_globals,
44 unfulfilled_lint_expectations,
45 unused_imports,
46 unused_variables
47 )]
48 tonic::include_proto!("steer.remote_workspace.v1");
49 }
50}