let mut client = appwrite::client::Client::new();
client.set_endpoint("https://[HOSTNAME_OR_IP]/v1"); // Your API Endpoint
client.set_project("5df5acd0d48c2"); // Your project ID
let functions = appwrite::services::Functions::new(&client);
let response = match functions.create_deployment("[FUNCTION_ID]", "[ENTRYPOINT]", std::path::PathBuf::from("./path-to-files/image.jpg"), false) {
};
println!("{:?}", response);