client 0.1.1-beta1

Decentralized chat client, including the client's main implementation and cli.
1
2
3
4
5
6
7
8
9
10
11
12
13
// https://schema.org/Message
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Message {
  // sender can be persion or recipient
    pub sender: Person,
    pub recipient: Person,

    pub  DatePublished: String,
}

pub struct Person {
    pub name: String,
}