mirror of
https://gitlab.com/xmpp-rs/xmpp-rs.git
synced 2024-07-12 22:21:53 +00:00
12 lines
168 B
Rust
12 lines
168 B
Rust
|
use jid::Jid;
|
||
|
|
||
|
pub struct XmppClient {
|
||
|
transport: SslTransport,
|
||
|
}
|
||
|
|
||
|
impl XmppClient {
|
||
|
pub fn connect(jid: Jid) -> XmppClient {
|
||
|
unimplemented!();
|
||
|
}
|
||
|
}
|