blib/lib/WebService/Mattermost/V4/API/Resource/Schemes.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 3 | 3 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 1 | 1 | 100.0 |
pod | n/a | ||
total | 4 | 4 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package WebService::Mattermost::V4::API::Resource::Schemes; 2: 3: # ABSTRACT: Wrapped API methods for the schemes API endpoints. 4: 5: use Moo; 6: 7: extends 'WebService::Mattermost::V4::API::Resource'; 8: 9: 1; 10: 11: __END__ 12: 13: =pod 14: 15: =encoding UTF-8 16: 17: =head1 NAME 18: 19: WebService::Mattermost::V4::API::Resource::Schemes - Wrapped API methods for the schemes API endpoints. 20: 21: =head1 VERSION 22: 23: version 0.28 24: 25: =head1 DESCRIPTION 26: 27: Stub for (incomplete) schemes resource integration. 28: 29: =head1 SEE ALSO 30: 31: =over 4 32: 33: =item * L<Official API documentation|https://api.mattermost.com/#tag/schemes> 34: 35: =back 36: 37: =head1 AUTHOR 38: 39: Mike Jones <mike@netsplit.org.uk> 40: 41: =head1 COPYRIGHT AND LICENSE 42: 43: This software is Copyright (c) 2020 by Mike Jones. 44: 45: This is free software, licensed under: 46: 47: The MIT (X11) License 48: 49: =cut 50: |