summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authoreudoxia <uplink@distress.network>2022-04-25 02:26:06 -0400
committereudoxia <uplink@distress.network>2022-04-25 02:26:06 -0400
commit04518819d5916cd4d024b4c6c777d23c75407e60 (patch)
tree5e65492c73bfb06e2d12c166c0faa4d85ebe8828 /src
parentaa372c0ed6ca775f603a535d8bad70f172751a29 (diff)
added license headers
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;