authly_common/
proto.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Authly protobuf types.

/// Tonic types for the `authly_connect` protobuf definition.
pub mod connect {
    tonic::include_proto!("authly_connect");
}

/// Tonic types for the `authly_mandate_submission` protobuf definition.
pub mod mandate_submission {
    tonic::include_proto!("authly_mandate_submission");
}

/// Tonic types for the `authly_service` protobuf definition.
pub mod service {
    tonic::include_proto!("authly_service");
}