App-Ordo

 view release on metacpan or  search on metacpan

lib/App/Ordo/Command/Exit.pm  view on Meta::CPAN

package App::Ordo::Command::Exit;
use Moo;
extends 'App::Ordo::Command::Base';

sub name    { "exit" }
sub summary { "Exit the interactive shell" }
sub usage   { "" }
sub aliases { ['quit'] }

sub option_spec { {} }

sub execute {
    my ($self) = @_;
    say colored(["bold yellow"], "Goodbye!");
    exit 0;
}

1;



( run in 0.692 second using v1.01-cache-2.11-cpan-9581c071862 )