line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Business::Mondo::Version; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
=head1 NAME |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
Business::Mondo::Version |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=head1 DESCRIPTION |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
A role for a Mondo version information. |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=cut |
12
|
|
|
|
|
|
|
|
13
|
10
|
|
|
10
|
|
4247
|
use strict; |
|
10
|
|
|
|
|
15
|
|
|
10
|
|
|
|
|
243
|
|
14
|
10
|
|
|
10
|
|
30
|
use warnings; |
|
10
|
|
|
|
|
14
|
|
|
10
|
|
|
|
|
205
|
|
15
|
|
|
|
|
|
|
|
16
|
10
|
|
|
10
|
|
30
|
use Moo::Role; |
|
10
|
|
|
|
|
11
|
|
|
10
|
|
|
|
|
61
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
$Business::Mondo::VERSION = '9999.99'; |
19
|
|
|
|
|
|
|
$Business::Mondo::API_VERSION = 'v1'; |
20
|
|
|
|
|
|
|
$Business::Mondo::API_URL = 'https://api.getmondo.co.uk'; |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 AUTHOR |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
Lee Johnson - C<leejo@cpan.org> |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or modify it under |
27
|
|
|
|
|
|
|
the same terms as Perl itself. If you would like to contribute documentation, |
28
|
|
|
|
|
|
|
features, bug fixes, or anything else then please raise an issue / pull request: |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
https://github.com/leejo/business-mondo |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=cut |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
1; |