Skip to main content

cli/lib/runners/
runner.rs

1//! Upstream source: `../nest-cli/lib/runners/runner.ts`.
2
3pub type Runner = super::RunnerKind;
4
5pub fn binary(runner: Runner) -> &'static str {
6    runner.binary()
7}