Crates.io | swimlane |
lib.rs | swimlane |
version | 0.1.0 |
source | src |
created_at | 2023-08-30 17:30:48.263576 |
updated_at | 2023-08-30 17:30:48.263576 |
description | A Rust client for the Swimlane API |
homepage | https://github.com/alex-way/swimlane-rs |
repository | https://github.com/alex-way/swimlane-rs |
max_upload_size | |
id | 959168 |
size | 97,960 |
This is a rust client for the Swimlane API. Please note that this isn't anywhere near completion. Swimlane's API documentation is not complete, so this client is not complete. I will be adding to this as I need to use more of the API. If you need something that isn't here, please feel free to open an issue or a pull request.
Add this to your Cargo.toml
:
[dependencies]
swimlane = "0.1.0"
use swimlane::Swimlane;
fn main() {
let client = Swimlane::new("https://swimlane.example.com", "api_key");
client.health_ping().unwrap();
}