squarecloud 0.1.1

Async Rust client for the SquareCloud API
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::Endpoint;
use reqwest::Method;

#[cfg(feature = "test-utils")]
inventory::submit! { crate::EndpointSpec { method: "get", path: "/service/status" } }

impl Endpoint {
    pub(crate) fn service_status() -> Endpoint {
        Self::builder("/service/status", Method::GET).build()
    }
}