taganak_framework/
lib.rs

1pub mod datasets;
2pub mod graphs;
3
4// FIXME check that this is the taganak version, not the final binary name and version
5pub const USER_AGENT: &str = concat!(env!("CARGO_PKG_NAME"), "/", env!("CARGO_PKG_VERSION"),);
6
7pub mod prelude {
8    pub use taganak_core::prelude::*;
9
10    // Traits and wrappers
11    pub use super::datasets::{ConfigurableDataset, DatasetConfig};
12    pub use super::graphs::{ConfigurableGraph, ConfigurableGraphs, GraphConfig, GraphConfigs};
13}