use crate::{Channel, Node, Result, UrbitAPIError};
use crossbeam::channel::{unbounded, Receiver};
use json::JsonValue;
use std::thread;
use std::time::Duration;
pub struct InviteStore<'a> {
pub channel: &'a mut Channel,
}
impl<'a> InviteStore<'a> {
pub fn accept_invite(&self, term: &str, uid: &str) {
todo!();
}
}