| 100 | |
| 101 | #[derive(Clone, Debug)] |
| 102 | pub struct Client { |
| 103 | pub root: DataRoot, |
| 104 | pub timespec: Timespec, |
| 105 | pub viewer: Arc<Viewer>, |
| 106 | } |
| 107 | |
| 108 | impl Client { |
| 109 | pub fn new(viewer: Arc<Viewer>, root: &DataRoot, timespec: Timespec) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected