2026-04-29 01:25:06 -03:00
|
|
|
use super::*;
|
2026-04-25 16:48:20 -03:00
|
|
|
|
2026-04-29 01:25:06 -03:00
|
|
|
fn play(decision: UpstreamPlanDecision) -> PlannedUpstreamPacket {
|
2026-04-25 22:25:24 -03:00
|
|
|
match decision {
|
2026-04-29 01:25:06 -03:00
|
|
|
UpstreamPlanDecision::Play(plan) => plan,
|
2026-04-25 22:25:24 -03:00
|
|
|
other => panic!("expected playable packet, got {other:?}"),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-29 01:25:06 -03:00
|
|
|
mod async_wait;
|
|
|
|
|
mod config;
|
|
|
|
|
mod lifecycle;
|
|
|
|
|
mod planning;
|