dagger-rs/crates/dagger-core/src/lib.rs

17 lines
252 B
Rust
Raw Normal View History

2023-02-05 22:26:58 +01:00
pub mod cli_session;
pub mod config;
pub mod connect_params;
pub mod downloader;
pub mod engine;
2023-01-30 22:21:16 +01:00
pub mod introspection;
2023-02-05 22:26:58 +01:00
pub mod schema;
pub mod session;
2023-01-30 22:21:16 +01:00
2023-01-29 20:14:52 +01:00
pub struct Scalar(String);
2023-01-30 20:44:48 +01:00
pub struct Boolean(bool);
pub struct Int(isize);
pub trait Input {}