1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#![deny(warnings)]

pub const DAGGER_ENGINE_VERSION: &'static str = "0.4.0";

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