ord/subcommand/
epochs.rs

1use super::*;
2
3#[derive(Debug, PartialEq, Serialize, Deserialize)]
4pub struct Output {
5  pub starting_sats: Vec<Sat>,
6}
7
8pub(crate) fn run() -> SubcommandResult {
9  let mut starting_sats = Vec::new();
10  for sat in Epoch::STARTING_SATS {
11    starting_sats.push(sat);
12  }
13
14  Ok(Some(Box::new(Output { starting_sats })))
15}