pitchfork 0.0.1

Satan's very own process manager.
Documentation
//! `version` subcommand

#![allow(clippy::never_loop)]

use super::PitchforkCmd;
use abscissa_core::{Command, Options, Runnable};

/// `version` subcommand
#[derive(Command, Debug, Default, Options)]
pub struct VersionCmd {}

impl Runnable for VersionCmd {
    /// Print version message
    fn run(&self) {
        println!("{} {}", PitchforkCmd::name(), PitchforkCmd::version());
    }
}