urbit_http_api/apps/harkstore.rs
1use crate::{Channel, Node, Result, UrbitAPIError};
2use crossbeam::channel::{unbounded, Receiver};
3use json::JsonValue;
4use std::thread;
5use std::time::Duration;
6
7/// A struct that provides an interface for interacting with hark-store
8pub struct HarkStore<'a> {
9 pub channel: &'a mut Channel,
10}
11
12impl<'a> HarkStore<'a> {}