summaryrefslogtreecommitdiffstats
path: root/src/log
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/log
parent1c02cf5fa44f4813c919b8d7bca1d8b80af4046b (diff)
Add LICENSE file and license headers
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'src/log')
-rw-r--r--src/log/item.rs10
-rw-r--r--src/log/mod.rs10
-rw-r--r--src/log/parser.rs10
-rw-r--r--src/log/sink.rs10
-rw-r--r--src/log/util.rs10
5 files changed, 50 insertions, 0 deletions
diff --git a/src/log/item.rs b/src/log/item.rs
index 139ca76..4236bb6 100644
--- a/src/log/item.rs
+++ b/src/log/item.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 anyhow::Result;
#[derive(Debug, PartialEq, Eq, Hash)]
diff --git a/src/log/mod.rs b/src/log/mod.rs
index e3d8325..7f6923d 100644
--- a/src/log/mod.rs
+++ b/src/log/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 parser;
pub use parser::*;
diff --git a/src/log/parser.rs b/src/log/parser.rs
index 0ce3ef8..7acc203 100644
--- a/src/log/parser.rs
+++ b/src/log/parser.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::result::Result as RResult;
use std::str::FromStr;
diff --git a/src/log/sink.rs b/src/log/sink.rs
index fdc0c67..7308f8d 100644
--- a/src/log/sink.rs
+++ b/src/log/sink.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 anyhow::Result;
use crate::log::LogItem;
diff --git a/src/log/util.rs b/src/log/util.rs
index 675a4c4..783ee47 100644
--- a/src/log/util.rs
+++ b/src/log/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
+//
+
use shiplift::tty::TtyChunk;
pub enum TtyChunkBuf {