runbox 1.5.1

CLI for scaffolding container runner integration files
Documentation
1
2
3
4
5
6
7
8
9
10
//! `runbox` binary entry point.
//!
//! Thin wrapper that delegates to [`runbox::run_cli()`].
//! The full pipeline implementation lives in the library so it is compiled
//! once and shared by the `runbox` and `crb` binary targets.

fn main()
{
  runbox::run_cli();
}