App::Bot::BasicBot::Pluggable::Terminal - App::Bot::BasicBot::Pluggable::Terminal documentation


Bot-BasicBot-Pluggable documentation Contained in the Bot-BasicBot-Pluggable distribution.

Index


Code Index:

NAME

Top

App::Bot::BasicBot::Pluggable::Terminal

VERSION

Top

version 0.93

SYNOPSIS

Top

App::Bot::BasicBot::Pluggable::Terminal->new()->run();

DESCRIPTION

Top

This subclass of App::Bot::BasicBot::Pluggable just alters the default bot class to Bot::BasicBot::Pluggable::Terminal. Nothing fance here.

AUTHOR

Top

Mario Domgoergen <mdom@cpan.org>

LICENSE

Top

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.


Bot-BasicBot-Pluggable documentation Contained in the Bot-BasicBot-Pluggable distribution.

package App::Bot::BasicBot::Pluggable::Terminal;
BEGIN {
  $App::Bot::BasicBot::Pluggable::Terminal::VERSION = '0.93';
}

use Moose;
use Bot::BasicBot::Pluggable::Terminal;
extends 'App::Bot::BasicBot::Pluggable';

has '+bot_class' => ( default => 'Bot::BasicBot::Pluggable::Terminal' );

1;

__END__