reactive_graph_runtime_impl/
lib.rs

1#![allow(clippy::map_entry, clippy::module_inception, clippy::too_many_arguments)]
2
3// async fn in traits + async closures
4// TODO: #![feature(async_fn_in_trait)]
5// https://rust-lang.github.io/async-fundamentals-initiative/index.html
6
7// Let rust know to link to the implementations
8extern crate reactive_graph_behaviour_service_impl;
9extern crate reactive_graph_dynamic_graph_impl;
10extern crate reactive_graph_graphql_impl;
11extern crate reactive_graph_instance_system_impl;
12extern crate reactive_graph_plugin_graphql_impl;
13extern crate reactive_graph_plugin_service_impl;
14extern crate reactive_graph_reactive_service_impl;
15extern crate reactive_graph_runtime_graphql_impl;
16extern crate reactive_graph_runtime_service_impl;
17extern crate reactive_graph_runtime_web_impl;
18extern crate reactive_graph_type_system_impl;
19
20pub use builder::*;
21pub use runtime_getter::*;
22pub use runtime_impl::*;
23
24pub mod builder;
25pub mod runtime_getter;
26pub mod runtime_impl;
27
28// #[cfg(test)]
29// mod tests;