line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package App::TeleGramma::BotAction; |
2
|
|
|
|
|
|
|
$App::TeleGramma::BotAction::VERSION = '0.13'; |
3
|
|
|
|
|
|
|
# ABSTRACT: A base class for bot actions |
4
|
|
|
|
|
|
|
|
5
|
4
|
|
|
4
|
|
1346
|
use Mojo::Base -base; |
|
4
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
27
|
|
6
|
|
|
|
|
|
|
|
7
|
0
|
|
|
0
|
0
|
|
sub can_listen { 0 } |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
1; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
__END__ |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=pod |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=encoding UTF-8 |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 NAME |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
App::TeleGramma::BotAction - A base class for bot actions |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 VERSION |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
version 0.13 |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head1 AUTHOR |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
Justin Hawkins <justin@eatmorecode.com> |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
This software is copyright (c) 2017 by Justin Hawkins <justin@eatmorecode.com>. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
34
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=cut |