fluentci_shared/
state.rs

1use std::sync::{mpsc::Receiver, Arc, Mutex};
2
3use fluentci_core::deps::Graph;
4
5pub struct State {
6    pub graph: Arc<Mutex<Graph>>,
7    pub rx: Arc<Mutex<Receiver<(String, usize)>>>,
8    pub runner: String,
9}