weaviate-community 0.1.0

community weaviate client library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use reqwest::Url;
use std::error::Error;

pub struct _Nodes {
    _endpoint: Url,
}

impl _Nodes {
    pub fn new(url: &Url) -> Result<Self, Box<dyn Error>> {
        let _endpoint = url.join("/v1/nodes")?;
        Ok(_Nodes { _endpoint })
    }
}