An open API service indexing awesome lists of open source software.

https://github.com/watchdg/rust-influx


https://github.com/watchdg/rust-influx

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# influx

```rust
let mut influx = Influx::new("127.0.0.1:8086".into());
influx.connect().unwrap();
let ping = influx.ping().unwrap();
influx.disconnect().unwrap();
```