diff options
Diffstat (limited to 'src/handler')
| -rw-r--r-- | src/handler/hooks.rs | 3 | ||||
| -rw-r--r-- | src/handler/hooks/post_route.rs | 3 | ||||
| -rw-r--r-- | src/handler/hooks/pre_route.rs | 3 | ||||
| -rw-r--r-- | src/handler/partial.rs | 3 | ||||
| -rw-r--r-- | src/handler/response.rs | 3 | ||||
| -rw-r--r-- | src/handler/response/error.rs | 3 | ||||
| -rw-r--r-- | src/handler/response/route.rs | 3 |
7 files changed, 7 insertions, 14 deletions
diff --git a/src/handler/hooks.rs b/src/handler/hooks.rs index 591a598..34ea42e 100644 --- a/src/handler/hooks.rs +++ b/src/handler/hooks.rs @@ -1,5 +1,4 @@ // This file is part of Windmark <https://github.com/gemrest/windmark>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +12,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. // -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2023 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only mod post_route; diff --git a/src/handler/hooks/post_route.rs b/src/handler/hooks/post_route.rs index 63a20b9..8a92fc6 100644 --- a/src/handler/hooks/post_route.rs +++ b/src/handler/hooks/post_route.rs @@ -1,5 +1,4 @@ // This file is part of Windmark <https://github.com/gemrest/windmark>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +12,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. // -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2023 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only use crate::{context::HookContext, Response}; diff --git a/src/handler/hooks/pre_route.rs b/src/handler/hooks/pre_route.rs index ff6162f..4221f14 100644 --- a/src/handler/hooks/pre_route.rs +++ b/src/handler/hooks/pre_route.rs @@ -1,5 +1,4 @@ // This file is part of Windmark <https://github.com/gemrest/windmark>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +12,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. // -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2023 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only use crate::context::HookContext; diff --git a/src/handler/partial.rs b/src/handler/partial.rs index aa433e1..913fa07 100644 --- a/src/handler/partial.rs +++ b/src/handler/partial.rs @@ -1,5 +1,4 @@ // This file is part of Windmark <https://github.com/gemrest/windmark>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +12,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. // -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2023 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only use crate::context::RouteContext; diff --git a/src/handler/response.rs b/src/handler/response.rs index 737fb5e..b1ccae7 100644 --- a/src/handler/response.rs +++ b/src/handler/response.rs @@ -1,5 +1,4 @@ // This file is part of Windmark <https://github.com/gemrest/windmark>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +12,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. // -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2023 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only #![allow(clippy::module_name_repetitions)] diff --git a/src/handler/response/error.rs b/src/handler/response/error.rs index a1a7885..af73001 100644 --- a/src/handler/response/error.rs +++ b/src/handler/response/error.rs @@ -1,5 +1,4 @@ // This file is part of Windmark <https://github.com/gemrest/windmark>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +12,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. // -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2023 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only use async_trait::async_trait; diff --git a/src/handler/response/route.rs b/src/handler/response/route.rs index c7df774..2604947 100644 --- a/src/handler/response/route.rs +++ b/src/handler/response/route.rs @@ -1,5 +1,4 @@ // This file is part of Windmark <https://github.com/gemrest/windmark>. -// Copyright (C) 2022-2022 Fuwn <[email protected]> // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -13,7 +12,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. // -// Copyright (C) 2022-2022 Fuwn <[email protected]> +// Copyright (C) 2022-2023 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only use async_trait::async_trait; |