summaryrefslogtreecommitdiffstats
path: root/src/filestore
diff options
context:
space:
mode:
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
//!