pirs 0.0.10

A portable Bash-like shell written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
pub const VERSION_COMMAND: crate::Command = crate::Command {
  name: "version",
  handler: |ctx, _args| {
    Box::pin(async move {
      ctx.logger.raw(&format!("pirs version: {}", crate::VERSION));

      (Some(ctx), 0)
    })
  },
};