f3-rs/src/repository.rs

15 lines
509 B
Rust

// Copyright (C) 2023 Aravinth Manivannan <realaravinth@batsense.net>
// SPDX-FileCopyrightText: 2023 Aravinth Manivannan <realaravinth@batsense.net>
//
// SPDX-License-Identifier: MIT
//! VCS repository relative to a project.
use serde::{Deserialize, Serialize};
/// VCS repository relative to a project.
#[derive(Clone, Debug, Serialize, Deserialize, Default, Eq, PartialEq)]
pub struct Repository {
/// Suffix to add to the clone URL of the project to access the repository.
pub name: String,
}