14 lines
287 B
Rust

use super::*;
fn play(decision: UpstreamPlanDecision) -> PlannedUpstreamPacket {
match decision {
UpstreamPlanDecision::Play(plan) => plan,
other => panic!("expected playable packet, got {other:?}"),
}
}
mod async_wait;
mod config;
mod lifecycle;
mod planning;