whiteboardlib/store/
board_store.rsuse common::store::{build_exp_link, get};
const DOMAIN: &str = "apps";
pub struct BoardStore {}
impl BoardStore {
pub async fn get_by_id() -> Result<String, String> {
get(build_exp_link(DOMAIN, format!("/scene/"))).await
}
}