f3-rs/src/repository.rs
Aravinth Manivannan 18b849be6c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline failed
feat: init reuse.software
2023-10-24 20:03:59 +05:30

14 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,
}