1
2
3
4
5
6
7
8
9
10
11
12
13
//! A collection of Rust modules that are shared between _The Graph_'s network services.
//!
//! The `types` module contains the rust types common between the different services
//! in _The Graph_ network and serve as foundational building blocks for the rest of
//! the codebase.

pub mod types;

#[cfg(feature = "subgraph-client")]
pub mod client;

#[cfg(feature = "subscriptions")]
pub mod subscriptions;