File: Actions.pm

package info (click to toggle)
libpithub-perl 0.01043-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,148 kB
  • sloc: perl: 9,098; makefile: 7
file content (57 lines) | stat: -rw-r--r-- 927 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package Pithub::Repos::Actions;
our $AUTHORITY = 'cpan:PLU';

# ABSTRACT: Github v3 Repo Actions API

use Moo;

our $VERSION = '0.01043';

use Pithub::Repos::Actions::Workflows ();

extends 'Pithub::Base';


sub workflows {
    return shift->_create_instance( Pithub::Repos::Actions::Workflows::, @_ );
}

1;

__END__

=pod

=encoding UTF-8

=head1 NAME

Pithub::Repos::Actions - Github v3 Repo Actions API

=head1 VERSION

version 0.01043

=head1 DESCRIPTION

This class is incomplete. Please send patches for any additional functionality
you may require.

=head1 METHODS

=head2 workflows

Provides access to L<Pithub::Repos::Actions::Worfklows>.

=head1 AUTHOR

Johannes Plunien <plu@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by Johannes Plunien.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut