diff options
| author | Fuwn <[email protected]> | 2022-01-04 18:15:04 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-01-04 18:15:04 +0000 |
| commit | 8ed19aee8b0511475eb0f6f0001ead3848067b09 (patch) | |
| tree | d5a46a426e133ca60a6cfd8293ee809537114568 /src/structures.rs | |
| parent | feat(main.rs): ratelimit (100 requests/minute) (diff) | |
| download | api-worker-8ed19aee8b0511475eb0f6f0001ead3848067b09.tar.xz api-worker-8ed19aee8b0511475eb0f6f0001ead3848067b09.zip | |
chore: stricter clippy
Diffstat (limited to 'src/structures.rs')
| -rw-r--r-- | src/structures.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/structures.rs b/src/structures.rs index 3b5a59e..7aa684c 100644 --- a/src/structures.rs +++ b/src/structures.rs @@ -1,6 +1,8 @@ // Copyright (C) 2021-2021 the senpy club // SPDX-License-Identifier: GPL-3.0-only +#![allow(clippy::used_underscore_binding)] + use serde_derive::{Deserialize, Serialize}; #[derive(Serialize, Deserialize, Debug)] |