fuel_core_interfaces/
sync.rs

1use tokio::sync::oneshot;
2
3pub enum SyncStatus {
4    Stopped,
5    InitialSync,
6}
7
8pub enum SyncMpsc {
9    Status { ret: oneshot::Sender<SyncStatus> },
10    Start,
11    Stop,
12}