aboutsummaryrefslogtreecommitdiffstats
path: root/filamento/src/logic/connection_error.rs
blob: 081900beedb40ec5b25644ab1a3fa9086673da89 (plain) (blame)
1
2
3
4
5
6
7
use lampada::error::ConnectionError;

use super::ClientLogic;

pub async fn handle_connection_error(logic: ClientLogic, error: ConnectionError) {
    logic.handle_error(error.into()).await;
}