pulse/
lib.rs

1
2
3
4
5pub struct Client { }
6
7
8impl Client {
9    pub fn new() -> Self {
10        Client {}
11    }
12}