| Bot-BasicBot-Pluggable documentation | Contained in the Bot-BasicBot-Pluggable distribution. |
App::Bot::BasicBot::Pluggable::Terminal
version 0.93
App::Bot::BasicBot::Pluggable::Terminal->new()->run();
This subclass of App::Bot::BasicBot::Pluggable just alters the default bot class to Bot::BasicBot::Pluggable::Terminal. Nothing fance here.
Mario Domgoergen <mdom@cpan.org>
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__