mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2024-11-22 23:32:12 +01:00
17 lines
252 B
Rust
17 lines
252 B
Rust
pub mod cli_session;
|
|
pub mod config;
|
|
pub mod connect_params;
|
|
pub mod downloader;
|
|
pub mod engine;
|
|
pub mod introspection;
|
|
pub mod schema;
|
|
pub mod session;
|
|
|
|
pub struct Scalar(String);
|
|
|
|
pub struct Boolean(bool);
|
|
|
|
pub struct Int(isize);
|
|
|
|
pub trait Input {}
|