diff options
Diffstat (limited to 'server/src')
-rw-r--r-- | server/src/main.rs | 2 | ||||
-rw-r--r-- | server/src/protocol.rs | 2 | ||||
-rw-r--r-- | server/src/room.rs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/server/src/main.rs b/server/src/main.rs index 57ec4df..e637805 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -1,7 +1,7 @@ /* 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> + Copyright (C) 2023 metamuffin <metamuffin@disroot.org> */ #![feature(lazy_cell)] pub mod assets; diff --git a/server/src/protocol.rs b/server/src/protocol.rs index aa58f9f..cc40cb6 100644 --- a/server/src/protocol.rs +++ b/server/src/protocol.rs @@ -1,7 +1,7 @@ /* 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> + Copyright (C) 2023 metamuffin <metamuffin@disroot.org> */ use serde::{Deserialize, Serialize}; diff --git a/server/src/room.rs b/server/src/room.rs index b103428..bfc391b 100644 --- a/server/src/room.rs +++ b/server/src/room.rs @@ -1,7 +1,7 @@ /* 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> + Copyright (C) 2023 metamuffin <metamuffin@disroot.org> */ use crate::protocol::{ClientboundPacket, ServerboundPacket}; use futures_util::{SinkExt, StreamExt, TryFutureExt}; |