feat(sdk): re-export through lib.rs

this means that you can now use dagger_sdk::connect() instead of
dagger_sdk::client::connect();
This commit is contained in:
2023-02-19 15:24:37 +01:00
committed by Kasper Juul Hermansen
parent de063eae85
commit 19ed6c267f
10 changed files with 17 additions and 32 deletions

View File

@@ -3,7 +3,7 @@ use rand::Rng;
fn main() -> eyre::Result<()> {
let mut rng = rand::thread_rng();
let client = dagger_sdk::client::connect()?;
let client = dagger_sdk::connect()?;
let context_dir = client
.host()