bhcli

A TUI for chatting on LE PHP Chats (onion)
git clone https://git.dasho.dev/n0tr1v/bhcli.git
Log | Files | Refs | README

commit af2fac2e6bd53fcb32de79e6107ebd4951de8869
parent b06591da1e86d06f0c26bd7a384b33c13d95e441
Author: n0tr1v <n0tr1v@protonmail.com>
Date:   Thu, 30 Mar 2023 03:40:02 -0700

cleanup

Diffstat:
Msrc/main.rs | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main.rs b/src/main.rs @@ -40,7 +40,7 @@ use std::sync::Mutex; use std::thread; use std::time::Duration; use std::time::Instant; -use reqwest::Error; +use reqwest; use termage; use textwrap; use tui::layout::Rect; @@ -231,7 +231,7 @@ enum LoginErr { } impl From<reqwest::Error> for LoginErr { - fn from(value: Error) -> Self { + fn from(value: reqwest::Error) -> Self { LoginErr::Reqwest(value) } }