diff options
| author | Fuwn <[email protected]> | 2023-05-18 06:24:50 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-05-18 06:24:50 +0000 |
| commit | 56f53ddca0135e17708af585bfb50144d6836f55 (patch) | |
| tree | 1d5beea4c266a7d9bdd50fe4750540d618b0b160 /src/request/sync.rs | |
| parent | fix: improve macro hygiene (diff) | |
| download | germ-56f53ddca0135e17708af585bfb50144d6836f55.tar.xz germ-56f53ddca0135e17708af585bfb50144d6836f55.zip | |
fmt: update rustfmt.toml
Diffstat (limited to 'src/request/sync.rs')
| -rw-r--r-- | src/request/sync.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/request/sync.rs b/src/request/sync.rs index f3cd7d1..56950fb 100644 --- a/src/request/sync.rs +++ b/src/request/sync.rs @@ -16,9 +16,10 @@ // Copyright (C) 2022-2022 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only -use tokio::io::{AsyncReadExt, AsyncWriteExt}; - -use crate::request::Response; +use { + crate::request::Response, + tokio::io::{AsyncReadExt, AsyncWriteExt}, +}; /// Make a request to a Gemini server /// |