1 2 3 4 5 6 7 8 9 10 11 12 13 14
use crate::dbs::graph::neo4j::Neo4J; #[derive(Clone)] pub struct Stores { pub graph: Neo4J, } impl Stores { pub fn new() -> Stores { Stores { graph: Neo4J::new(), } } }