whiteboardlib/store/
board_store.rs

1
2
3
4
5
6
7
8
9
10
11
use 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
    }
}