swimlane

Crates.ioswimlane
lib.rsswimlane
version0.1.0
sourcesrc
created_at2023-08-30 17:30:48.263576
updated_at2023-08-30 17:30:48.263576
descriptionA Rust client for the Swimlane API
homepagehttps://github.com/alex-way/swimlane-rs
repositoryhttps://github.com/alex-way/swimlane-rs
max_upload_size
id959168
size97,960
Alexander Way (alex-way)

documentation

https://github.com/alex-way/swimlane-rs

README

Swimlane API Client

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.

Usage

Add this to your Cargo.toml:

[dependencies]
swimlane = "0.1.0"

Example

use swimlane::Swimlane;

fn main() {
    let client = Swimlane::new("https://swimlane.example.com", "api_key");
    client.health_ping().unwrap();
}
Commit count: 3

cargo fmt