cargo fmt

This commit is contained in:
Jez Cope 2021-07-03 15:26:59 +01:00
parent 8328eb7895
commit 218eef21ee
1 changed files with 5 additions and 1 deletions

View File

@ -10,7 +10,11 @@ use crate::util::{build_client_config, restore_session, save_session};
type CommandResult = Result<(), Box<dyn std::error::Error>>;
macro_rules! room_fmt {() => {"{:30.30} | {:30.30} | {}"};}
macro_rules! room_fmt {
() => {
"{:30.30} | {:30.30} | {}"
};
}
pub async fn login(username: Option<&str>) -> CommandResult {
let user_id = match username {