1
2
3
4
5
6
7
8
9
10
use crate::{Component, Error};

use super::TcpServerConnector;

impl Component<TcpServerConnector> {
    /// Start a new XMPP component
    pub async fn new(jid: &str, password: &str, server: String) -> Result<Self, Error> {
        Self::new_with_connector(jid, password, TcpServerConnector::new(server)).await
    }
}