mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2025-03-28 18:25:37 +01:00
This extracts the client (strategy pattern), this is so that it is will be possible to test the actual querier, without hitting / requiring the dagger-engine running.
23 lines
370 B
Rust
23 lines
370 B
Rust
#![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 graphql_client;
|
|
pub mod introspection;
|
|
pub mod logger;
|
|
pub mod schema;
|
|
pub mod session;
|
|
|
|
pub struct Scalar(String);
|
|
|
|
pub struct Boolean(bool);
|
|
|
|
pub struct Int(isize);
|
|
|
|
pub trait Input {}
|