gitlab/api/
deploy_keys.rs

1// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
2// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
3// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
4// option. This file may not be copied, modified, or distributed
5// except according to those terms.
6
7#![allow(clippy::module_inception)]
8
9//! Global deploy key related API endpoints
10//!
11//! These endpoints are used for querying deploy keys across the entire instance.
12
13mod deploy_keys;
14
15pub use self::deploy_keys::DeployKeys;
16pub use self::deploy_keys::DeployKeysBuilder;
17pub use self::deploy_keys::DeployKeysBuilderError;