accounts are now real
This commit is contained in:
@@ -62,7 +62,8 @@ impl ClientSender {
|
||||
pub fn remote(&self) -> SocketAddr {
|
||||
self.conn.remote_address()
|
||||
}
|
||||
pub async fn send(&self, msg: ServerMsg) -> SendResult {
|
||||
pub async fn send(&self, msg: impl Into<ServerMsg>) -> SendResult {
|
||||
let msg = msg.into();
|
||||
send_uni(&self.conn, msg).await
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user