From 851bdad9d0de9046ae3fdeb44e222981c1395abc Mon Sep 17 00:00:00 2001 From: Paul-Christian Volkmer Date: Fri, 13 Sep 2024 16:08:05 +0200 Subject: [PATCH] chore: update copyright notice --- README.md | 3 +++ src/cli.rs | 9 +++++++-- src/common.rs | 2 +- src/database.rs | 2 +- src/lkrexport.rs | 2 +- src/main.rs | 2 +- src/opal.rs | 2 +- src/resources/export.sql | 2 +- src/resources/exported-to-lkr.sql | 2 +- src/resources/mod.rs | 2 +- src/resources/query.sql | 2 +- src/resources/query_with_schema_version.sql | 2 +- 12 files changed, 20 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 0a709c2..a5db25f 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,9 @@ Anwendung zur Durchführung einer Plausibilitätsprüfung anhand der Daten für die BZKF Real World Data Platform. +**Hinweis:** Dies ist eine Weiterführung des ursprünglichen +Projekts [bzkf-rwdp-check](https://github.com/CCC-MF/bzkf-rwdp-check) + ## Aufbau der ETL-Strecke an den Standorten Die Daten werden aus der Onkostar-Datenbank ausgelesen und in Apache-Kafka eingespeist. diff --git a/src/cli.rs b/src/cli.rs index 9379b65..5426ade 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -1,7 +1,7 @@ /* * This file is part of bzkf-rwdp-check * - * Copyright (C) 2024 Comprehensive Cancer Center Mainfranken and contributors. + * Copyright (C) 2024 the original author or authors. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -179,7 +179,12 @@ pub enum SubCommand { user: String, #[arg(short, long, help = "LKR-Export-Protokoll-Datei")] file: PathBuf, - #[arg(long, alias = "export-package", help = "Exportpaketnummer", default_value = "0")] + #[arg( + long, + alias = "export-package", + help = "Exportpaketnummer", + default_value = "0" + )] package: u16, }, } diff --git a/src/common.rs b/src/common.rs index 329cc46..b8ec6e0 100644 --- a/src/common.rs +++ b/src/common.rs @@ -1,7 +1,7 @@ /* * This file is part of bzkf-rwdp-check * - * Copyright (C) 2024 Comprehensive Cancer Center Mainfranken and contributors. + * Copyright (C) 2024 the original author or authors. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/database.rs b/src/database.rs index 4860b50..05c90d5 100644 --- a/src/database.rs +++ b/src/database.rs @@ -1,7 +1,7 @@ /* * This file is part of bzkf-rwdp-check * - * Copyright (C) 2024 Comprehensive Cancer Center Mainfranken and contributors. + * Copyright (C) 2024 the original author or authors. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/lkrexport.rs b/src/lkrexport.rs index 80a06f3..c2cd448 100644 --- a/src/lkrexport.rs +++ b/src/lkrexport.rs @@ -1,7 +1,7 @@ /* * This file is part of bzkf-rwdp-check * - * Copyright (C) 2024 Comprehensive Cancer Center Mainfranken and contributors. + * Copyright (C) 2024 the original author or authors. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/main.rs b/src/main.rs index e433939..7747c75 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,7 +1,7 @@ /* * This file is part of bzkf-rwdp-check * - * Copyright (C) 2024 Comprehensive Cancer Center Mainfranken and contributors. + * Copyright (C) 2024 the original author or authors. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/opal.rs b/src/opal.rs index 5428d4b..3f393be 100644 --- a/src/opal.rs +++ b/src/opal.rs @@ -1,7 +1,7 @@ /* * This file is part of bzkf-rwdp-check * - * Copyright (C) 2024 Comprehensive Cancer Center Mainfranken and contributors. + * Copyright (C) 2024 the original author or authors. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/resources/export.sql b/src/resources/export.sql index 4bc83b6..920ac03 100644 --- a/src/resources/export.sql +++ b/src/resources/export.sql @@ -1,7 +1,7 @@ /* * This file is part of bzkf-rwdp-check * - * Copyright (C) 2024 Comprehensive Cancer Center Mainfranken and contributors. + * Copyright (C) 2024 the original author or authors. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/resources/exported-to-lkr.sql b/src/resources/exported-to-lkr.sql index ace8d03..4a63e48 100644 --- a/src/resources/exported-to-lkr.sql +++ b/src/resources/exported-to-lkr.sql @@ -1,7 +1,7 @@ /* * This file is part of bzkf-rwdp-check * - * Copyright (C) 2024 Comprehensive Cancer Center Mainfranken and contributors. + * Copyright (C) 2024 the original author or authors. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/resources/mod.rs b/src/resources/mod.rs index 5cd215c..0a0df5b 100644 --- a/src/resources/mod.rs +++ b/src/resources/mod.rs @@ -1,7 +1,7 @@ /* * This file is part of bzkf-rwdp-check * - * Copyright (C) 2024 Comprehensive Cancer Center Mainfranken and contributors. + * Copyright (C) 2024 the original author or authors. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/resources/query.sql b/src/resources/query.sql index 9e88b98..e63578a 100644 --- a/src/resources/query.sql +++ b/src/resources/query.sql @@ -1,7 +1,7 @@ /* * This file is part of bzkf-rwdp-check * - * Copyright (C) 2024 Comprehensive Cancer Center Mainfranken and contributors. + * Copyright (C) 2024 the original author or authors. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/resources/query_with_schema_version.sql b/src/resources/query_with_schema_version.sql index 700af36..045527c 100644 --- a/src/resources/query_with_schema_version.sql +++ b/src/resources/query_with_schema_version.sql @@ -1,7 +1,7 @@ /* * This file is part of bzkf-rwdp-check * - * Copyright (C) 2024 Comprehensive Cancer Center Mainfranken and contributors. + * Copyright (C) 2024 the original author or authors. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by