border_async_trainer/
error.rs

1use thiserror::Error;
2
3#[derive(Debug, Error)]
4pub enum BorderAsyncTrainerError {
5    #[error("Error")]
6    SendMsgForPush,
7}