Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

# ABSTRACT: Something that has a configuration
#-----------------------------------------------------------------------------
our $VERSION = '0.025_001'; # VERSION
#-----------------------------------------------------------------------------
has config => (
is => 'ro',
isa => 'Pinto::Config',
required => 1,
);
#-----------------------------------------------------------------------------
1;
=pod
=for :stopwords Jeffrey Ryan Thalhammer Imaginative Software Systems
=head1 NAME
Pinto::Interface::Configurable - Something that has a configuration
=head1 VERSION
version 0.025_001
=head1 AUTHOR
Jeffrey Ryan Thalhammer <jeff@imaginative-software.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Imaginative Software Systems.
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
__END__