summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/data.zig5
-rw-r--r--src/log.zig5
-rw-r--r--src/tangle.zig5
-rw-r--r--src/weave.zig5
4 files changed, 20 insertions, 0 deletions
diff --git a/src/data.zig b/src/data.zig
index 824d36c..c791daf 100644
--- a/src/data.zig
+++ b/src/data.zig
@@ -1,3 +1,8 @@
+// Copyright 2022 DistressNetwork° <uplink@distress.network>
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at https://mozilla.org/MPL/2.0/.
+
const std = @import("std");
const log = @import("log.zig").log;
diff --git a/src/log.zig b/src/log.zig
index 661b97f..0212885 100644
--- a/src/log.zig
+++ b/src/log.zig
@@ -1,3 +1,8 @@
+// Copyright 2022 DistressNetwork° <uplink@distress.network>
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at https://mozilla.org/MPL/2.0/.
+
const std = @import("std");
const Level = std.log.Level;
diff --git a/src/tangle.zig b/src/tangle.zig
index 1b967c7..92a2200 100644
--- a/src/tangle.zig
+++ b/src/tangle.zig
@@ -1,3 +1,8 @@
+// Copyright 2022 DistressNetwork° <uplink@distress.network>
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at https://mozilla.org/MPL/2.0/.
+
const std = @import("std");
const data = @import("data.zig");
const log = @import("log.zig").log;
diff --git a/src/weave.zig b/src/weave.zig
index 8a1f5c4..de5353c 100644
--- a/src/weave.zig
+++ b/src/weave.zig
@@ -1,3 +1,8 @@
+// Copyright 2022 DistressNetwork° <uplink@distress.network>
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at https://mozilla.org/MPL/2.0/.
+
const std = @import("std");
const data = @import("data.zig");
const log = @import("log.zig").log;