Files
ingey/src/graph/pull_from_db.rs

13 lines
352 B
Rust

use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
use super::sql::QueryExecutor;
/**
* Pull data from a db using a db query into a csv file that can be used by another node
*/
fn pull_from_db(executor: &mut impl QueryExecutor, node: PullFromDBNode) {}
#[derive(Serialize, Deserialize, Clone, JsonSchema)]
pub struct PullFromDBNode {}