This service can be used to:
root: Set the working directory of OpenDALendpoints: Set the network address of etcd serversusername: Set the username of Etcdpassword: Set the password for authenticationca_path: Set the ca path to the etcd connectioncert_path: Set the cert path to the etcd connectionkey_path: Set the key path to the etcd connectionYou can refer to [EtcdBuilder]'s docs for more information
use opendal_core::Operator; use opendal_core::Result; use opendal_service_etcd::Etcd; #[tokio::main] async fn main() -> Result<()> { let mut builder = Etcd::default(); // this will build a Operator accessing etcd which runs on http://127.0.0.1:2379 let op: Operator = Operator::new(builder)?.finish(); Ok(()) }