The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

# ABSTRACT: For creating roles in Chart::GGPlot
use strict;
our $VERSION = '0.0002_01'; # TRIAL VERSION
sub import {
my ( $class, @tags ) = @_;
Chart::GGPlot::Setup->_import( scalar(caller), qw(:role), @tags );
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Chart::GGPlot::Role - For creating roles in Chart::GGPlot
=head1 VERSION
version 0.0002_01
=head1 SYNOPSIS
use Chart::GGPlot::Role;
=head1 DESCRIPTION
C<use Chart::GGPlot::Role ...;> is equivalent of
use Chart::GGPlot::Setup qw(:role), ...;
=head1 SEE ALSO
L<Chart::GGPlot::Setup>
=head1 AUTHOR
Stephan Loyd <sloyd@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2019 by Stephan Loyd.
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