Surf Disco
A client library for Tide Disco applications.
Quick Start
let client: = new;
let res: String = client.get.send.await.unwrap;
To learn more, read the API reference.
A client library for Tide Disco applications.
let client: Client<ClientError> = Client::new(url_for_tide_disco_app);
let res: String = client.get("/module/route").send().await.unwrap();
To learn more, read the API reference.