This commit is contained in:
2026-01-26 17:09:40 -05:00
parent 53ed4775ae
commit a8b55f669f
8 changed files with 656 additions and 252 deletions

View File

@@ -27,3 +27,9 @@ impl From<CreateAccount> for ClientMsg {
Self::CreateAccount(value)
}
}
impl From<ServerError> for ServerMsg {
fn from(value: ServerError) -> Self {
Self::ServerError(value)
}
}