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

8 lines
98 B
Rust
Raw Normal View History

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 {}