From e6060d5445eb9a62e3e83f6de0577a1d5b573452 Mon Sep 17 00:00:00 2001
From: Awiteb
Date: Tue, 21 May 2024 18:35:22 +0300
Subject: [PATCH] chore(copyright): Update the copyright
Signed-off-by: Awiteb
---
Cargo.toml | 2 +-
src/api.rs | 6 +++---
src/main.rs | 6 +++---
src/superbot.rs | 6 +++---
4 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
index 21ad3e5..24fce7a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,5 +1,5 @@
[package]
-authors = ["TheAwiteb "]
+authors = ["Awiteb "]
description = "Simple API to ping a telegram bot using superbot (mtproto)"
edition = "2021"
license = "AGPL-3.0-or-later"
diff --git a/src/api.rs b/src/api.rs
index f0507ed..c311147 100644
--- a/src/api.rs
+++ b/src/api.rs
@@ -1,5 +1,5 @@
// A simple API to ping telegram bots and returns if it's online or not.
-// Copyright (C) 2023 Awiteb
+// Copyright (C) 2023-2024 Awiteb
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published
@@ -8,11 +8,11 @@
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
-// along with this program. If not, see .
+// along with this program. If not, see .
use std::sync::Arc;
diff --git a/src/main.rs b/src/main.rs
index 8a8f0f8..656a85e 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,5 +1,5 @@
// A simple API to ping telegram bots and returns if it's online or not.
-// Copyright (C) 2023 Awiteb
+// Copyright (C) 2023-2024 Awiteb
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published
@@ -8,11 +8,11 @@
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
-// along with this program. If not, see .
+// along with this program. If not, see .
use std::{env, fs, sync::Mutex};
diff --git a/src/superbot.rs b/src/superbot.rs
index e316312..8b1457a 100644
--- a/src/superbot.rs
+++ b/src/superbot.rs
@@ -1,5 +1,5 @@
// A simple API to ping telegram bots and returns if it's online or not.
-// Copyright (C) 2023 Awiteb
+// Copyright (C) 2023-2024 Awiteb
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published
@@ -8,11 +8,11 @@
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
-// along with this program. If not, see .
+// along with this program. If not, see .
use grammers_client::{Client, Config, InitParams, SignInError, Update};
use grammers_session::Session;