Files
windmill/rust-client/src/lib.rs
T
pyranota 332f66e348 feat(rust): add rust sdk (#5909)
* upload client

* add gh workflow

* refactor build script

* remove dbg!

* fix async

* remove unused

* update dev.nu

* update CI

* fix ci

* fixin tests

* fixes + tests
2025-06-10 18:38:18 +02:00

9 lines
160 B
Rust

#![doc = include_str!("../README.md")]
mod client;
mod maybe_future;
#[cfg(test)]
mod tests;
pub use client::{SdkError, Windmill};
pub use windmill_api::apis;