summaryrefslogtreecommitdiffstats
path: root/src/filestore
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-01-13 08:31:24 +0100
committerMatthias Beyer <matthias.beyer@atos.net>2021-01-13 15:09:01 +0100
commitcbb1457d62e60e6860320951e08b24b2c1b4d4c8 (patch)
tree1e23030f76a5eff1aaeedfd89de0bc6d55472963 /src/filestore
parent1c02cf5fa44f4813c919b8d7bca1d8b80af4046b (diff)
Add LICENSE file and license headers
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'src/filestore')
-rw-r--r--src/filestore/artifact.rs10
-rw-r--r--src/filestore/merged.rs10
-rw-r--r--src/filestore/mod.rs10
-rw-r--r--src/filestore/path.rs10
-rw-r--r--src/filestore/release.rs10
-rw-r--r--src/filestore/staging.rs10
-rw-r--r--src/filestore/util.rs10
7 files changed, 70 insertions, 0 deletions
diff --git a/src/filestore/artifact.rs b/src/filestore/artifact.rs
index c744d82..b754e9f 100644
--- a/src/filestore/artifact.rs
+++ b/src/filestore/artifact.rs
@@ -1,3 +1,13 @@
+//
+// Copyright (c) 2020-2021 science+computing ag and other contributors
+//
+// This program and the accompanying materials are made
+// available under the terms of the Eclipse Public License 2.0
+// which is available at https://www.eclipse.org/legal/epl-2.0/
+//
+// SPDX-License-Identifier: EPL-2.0
+//
+
use std::cmp::Ordering;
use anyhow::Context;
diff --git a/src/filestore/merged.rs b/src/filestore/merged.rs
index 8172516..5a829d9 100644
--- a/src/filestore/merged.rs
+++ b/src/filestore/merged.rs
@@ -1,3 +1,13 @@
+//
+// Copyright (c) 2020-2021 science+computing ag and other contributors
+//
+// This program and the accompanying materials are made
+// available under the terms of the Eclipse Public License 2.0
+// which is available at https://www.eclipse.org/legal/epl-2.0/
+//
+// SPDX-License-Identifier: EPL-2.0
+//
+
use std::sync::Arc;
use log::trace;
diff --git a/src/filestore/mod.rs b/src/filestore/mod.rs
index 65e0609..0d19d02 100644
--- a/src/filestore/mod.rs
+++ b/src/filestore/mod.rs
@@ -1,3 +1,13 @@
+//
+// Copyright (c) 2020-2021 science+computing ag and other contributors
+//
+// This program and the accompanying materials are made
+// available under the terms of the Eclipse Public License 2.0
+// which is available at https://www.eclipse.org/legal/epl-2.0/
+//
+// SPDX-License-Identifier: EPL-2.0
+//
+
mod artifact;
pub use artifact::*;
diff --git a/src/filestore/path.rs b/src/filestore/path.rs
index 0e41bd8..ca537bb 100644
--- a/src/filestore/path.rs
+++ b/src/filestore/path.rs
@@ -1,3 +1,13 @@
+//
+// Copyright (c) 2020-2021 science+computing ag and other contributors
+//
+// This program and the accompanying materials are made
+// available under the terms of the Eclipse Public License 2.0
+// which is available at https://www.eclipse.org/legal/epl-2.0/
+//
+// SPDX-License-Identifier: EPL-2.0
+//
+
use std::path::Path;
use std::path::PathBuf;
use std::ffi::OsStr;
diff --git a/src/filestore/release.rs b/src/filestore/release.rs
index c05d7e8..3068729 100644
--- a/src/filestore/release.rs
+++ b/src/filestore/release.rs
@@ -1,3 +1,13 @@
+//
+// Copyright (c) 2020-2021 science+computing ag and other contributors
+//
+// This program and the accompanying materials are made
+// available under the terms of the Eclipse Public License 2.0
+// which is available at https://www.eclipse.org/legal/epl-2.0/
+//
+// SPDX-License-Identifier: EPL-2.0
+//
+
use std::fmt::Debug;
use anyhow::Result;
diff --git a/src/filestore/staging.rs b/src/filestore/staging.rs
index 0fa6e03..911d3e3 100644
--- a/src/filestore/staging.rs
+++ b/src/filestore/staging.rs
@@ -1,3 +1,13 @@
+//
+// Copyright (c) 2020-2021 science+computing ag and other contributors
+//
+// This program and the accompanying materials are made
+// available under the terms of the Eclipse Public License 2.0
+// which is available at https://www.eclipse.org/legal/epl-2.0/
+//
+// SPDX-License-Identifier: EPL-2.0
+//
+
use std::fmt::Debug;
use std::path::Path;
diff --git a/src/filestore/util.rs b/src/filestore/util.rs
index b1e1506..c27d8c6 100644
--- a/src/filestore/util.rs
+++ b/src/filestore/util.rs
@@ -1,3 +1,13 @@
+//
+// Copyright (c) 2020-2021 science+computing ag and other contributors
+//
+// This program and the accompanying materials are made
+// available under the terms of the Eclipse Public License 2.0
+// which is available at https://www.eclipse.org/legal/epl-2.0/
+//
+// SPDX-License-Identifier: EPL-2.0
+//
+
//! Module containing utilities for the filestore implementation
//!