1 2 3 4 5 6 7 8 9 10 11
use crate::endpoint::Endpoint; pub struct UploadUserImage; impl Endpoint for UploadUserImage { const PATH: &'static str = "/user/image"; const METHOD: http::Method = http::Method::POST; type Request = (); type Response = (); }