steer_proto/
lib.rs

1pub mod common {
2    pub mod v1 {
3        tonic::include_proto!("steer.common.v1");
4    }
5}
6
7pub mod agent {
8    pub mod v1 {
9        tonic::include_proto!("steer.agent.v1");
10    }
11}
12
13pub mod remote_workspace {
14    pub mod v1 {
15        tonic::include_proto!("steer.remote_workspace.v1");
16    }
17}