line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Slovo::Command::prodan; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
1144
|
use Mojo::Base 'Mojolicious::Commands'; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
has hint => <<"EOF"; |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
See '$0 prodan help ACTION' for more information on a specific command. |
8
|
|
|
|
|
|
|
EOF |
9
|
|
|
|
|
|
|
has message => sub { shift->extract_usage . "\nActions:\n" }; |
10
|
|
|
|
|
|
|
has namespaces => sub { [__PACKAGE__] }; |
11
|
|
|
|
|
|
|
has description => 'Sales related commands for a Slovo-based site.'; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
1; |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=encoding utf8 |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head1 NAME |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Slovo::Command::prodan - A sales command |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 SYNOPSIS |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
List available subcommands |
24
|
|
|
|
|
|
|
slovo prodan |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 DESCRIPTION |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Slovo::Command::prodan is just a namespace for sales management related |
29
|
|
|
|
|
|
|
commands for a site based on L. |
30
|
|
|
|
|
|
|
These commands are still alfa quality and their functionalities may change often. |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 SEE ALSO |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
L, |
35
|
|
|
|
|
|
|
L, |
36
|
|
|
|
|
|
|
L |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=cut |
39
|
|
|
|
|
|
|
|