NAME

Telebot::Command::bot::generate - Bot generator command

SYNOPSIS

Usage: APPLICATION bot generate [OPTIONS] [NAME]

    telebot bot generate
    telebot bot generate TestBot
    telebot bot generate My::TestBot

Options:
    -h, --help   Show this summary of available options

DESCRIPTION

Telebot::Command::bot::generate generates application directory structures for fully functional Telebot applications.

This is a core command, that means it is always enabled and its code a good example for learning to build new commands, you're welcome to fork it.

ATTRIBUTES

Telebot::Command::bot::generate inherits all attributes from Mojolicious::Command and implements the following new ones.

description

my $description = $app->description;
$app            = $app->description('Foo');

Short description of this command, used for the command list.

usage

my $usage = $app->usage;
$app      = $app->usage('Foo');

Usage information for this command, used for the help screen.

METHODS

Telebot::Command::generate inherits all methods from Mojolicious::Command and implements the following new ones.

run

$app->run(@ARGV);

Run this command.

SEE ALSO

Mojolicious, Mojolicious::Guides, https://mojolicious.org.