diff options
-rw-r--r-- | client-native-gui/src/chat.rs | 5 | ||||
-rw-r--r-- | client-native-gui/src/main.rs | 5 | ||||
-rw-r--r-- | client-web/source/sw/download_stream.ts | 6 |
3 files changed, 16 insertions, 0 deletions
diff --git a/client-native-gui/src/chat.rs b/client-native-gui/src/chat.rs index dc4c2bc..c1f7868 100644 --- a/client-native-gui/src/chat.rs +++ b/client-native-gui/src/chat.rs @@ -1,3 +1,8 @@ +/* + This file is part of keks-meet (https://codeberg.org/metamuffin/keks-meet) + which is licensed under the GNU Affero General Public License (version 3); see /COPYING. + Copyright (C) 2022 metamuffin <metamuffin@disroot.org> +*/ use crate::GuiPeer; use async_std::task::block_on; use client_native_lib::{ diff --git a/client-native-gui/src/main.rs b/client-native-gui/src/main.rs index 11290ee..ab6387d 100644 --- a/client-native-gui/src/main.rs +++ b/client-native-gui/src/main.rs @@ -1,3 +1,8 @@ +/* + This file is part of keks-meet (https://codeberg.org/metamuffin/keks-meet) + which is licensed under the GNU Affero General Public License (version 3); see /COPYING. + Copyright (C) 2022 metamuffin <metamuffin@disroot.org> +*/ #![feature(box_syntax)] pub mod chat; diff --git a/client-web/source/sw/download_stream.ts b/client-web/source/sw/download_stream.ts index 52d9fad..35a3c7e 100644 --- a/client-web/source/sw/download_stream.ts +++ b/client-web/source/sw/download_stream.ts @@ -1,3 +1,9 @@ +/* + This file is part of keks-meet (https://codeberg.org/metamuffin/keks-meet) + which is licensed under the GNU Affero General Public License (version 3); see /COPYING. + Copyright (C) 2022 metamuffin <metamuffin@disroot.org> +*/ +/// <reference lib="dom" /> import { log } from "../logger.ts" import { SW } from "./init.ts" |