drawbridge-type 0.4.2

Drawbridge type definitions.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: Apache-2.0

use serde::{Deserialize, Serialize};

/// A repository config
#[derive(Clone, Debug, Default, Deserialize, Eq, PartialEq, Serialize)]
#[allow(missing_copy_implementations)]
#[serde(deny_unknown_fields)]
pub struct Config {
    pub public: bool,
}