f3-rs/src/repository.rs

9 lines
266 B
Rust

use serde::{Deserialize, Serialize};
/// VCS repository relative to a project.
#[derive(Clone, Debug, Serialize, Deserialize, Default)]
pub struct Repository {
/// Suffix to add to the clone URL of the project to access the repository.
pub name: String,
}