11 lines
168 B
Rust
11 lines
168 B
Rust
|
|
use jid::Jid;
|
||
|
|
|
||
|
|
pub struct XmppClient {
|
||
|
|
transport: SslTransport,
|
||
|
|
}
|
||
|
|
|
||
|
|
impl XmppClient {
|
||
|
|
pub fn connect(jid: Jid) -> XmppClient {
|
||
|
|
unimplemented!();
|
||
|
|
}
|
||
|
|
}
|