From 71351b83af2cfb142ad536936f613a66059244f6 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Thu, 24 Jul 2025 17:15:22 +0200 Subject: chore(treewide): Add missing license headers --- crates/colors/src/custom.rs | 10 ++++++++++ crates/colors/src/lib.rs | 10 ++++++++++ crates/colors/src/list.rs | 10 ++++++++++ crates/colors/src/support.rs | 10 ++++++++++ 4 files changed, 40 insertions(+) (limited to 'crates/colors') diff --git a/crates/colors/src/custom.rs b/crates/colors/src/custom.rs index 2adcfa9..fd6b7b3 100644 --- a/crates/colors/src/custom.rs +++ b/crates/colors/src/custom.rs @@ -1,3 +1,13 @@ +// yt - A fully featured command line YouTube client +// +// Copyright (C) 2025 Benedikt Peetz +// SPDX-License-Identifier: GPL-3.0-or-later +// +// This file is part of Yt. +// +// You should have received a copy of the License along with this program. +// If not, see . + // Taken from // at 2025-07-16T18:05:55 CEST. diff --git a/crates/colors/src/lib.rs b/crates/colors/src/lib.rs index 71a5f34..663e19a 100644 --- a/crates/colors/src/lib.rs +++ b/crates/colors/src/lib.rs @@ -1,3 +1,13 @@ +// yt - A fully featured command line YouTube client +// +// Copyright (C) 2025 Benedikt Peetz +// SPDX-License-Identifier: GPL-3.0-or-later +// +// This file is part of Yt. +// +// You should have received a copy of the License along with this program. +// If not, see . + use std::fmt::{Display, Write}; use crate::{ diff --git a/crates/colors/src/list.rs b/crates/colors/src/list.rs index ecbe465..35fcb83 100644 --- a/crates/colors/src/list.rs +++ b/crates/colors/src/list.rs @@ -1,3 +1,13 @@ +// yt - A fully featured command line YouTube client +// +// Copyright (C) 2025 Benedikt Peetz +// SPDX-License-Identifier: GPL-3.0-or-later +// +// This file is part of Yt. +// +// You should have received a copy of the License along with this program. +// If not, see . + use crate::support::prepend_input; prepend_input! { diff --git a/crates/colors/src/support.rs b/crates/colors/src/support.rs index b42ce5d..3c3f87d 100644 --- a/crates/colors/src/support.rs +++ b/crates/colors/src/support.rs @@ -1,3 +1,13 @@ +// yt - A fully featured command line YouTube client +// +// Copyright (C) 2025 Benedikt Peetz +// SPDX-License-Identifier: GPL-3.0-or-later +// +// This file is part of Yt. +// +// You should have received a copy of the License along with this program. +// If not, see . + pub(super) const CSI: &str = "\x1b["; pub(super) const CSE: &str = "m"; -- cgit 1.4.1