initial commit
This commit is contained in:
commit
18327f522c
11 changed files with 1145 additions and 0 deletions
11
src/client.rs
Normal file
11
src/client.rs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
use jid::Jid;
|
||||
|
||||
pub struct XmppClient {
|
||||
transport: SslTransport,
|
||||
}
|
||||
|
||||
impl XmppClient {
|
||||
pub fn connect(jid: Jid) -> XmppClient {
|
||||
unimplemented!();
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue