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