package MyConfig; use strict; use warnings; =head1 NAME MyConfig - Basic configuration data =head1 DESCRIPTION Configuration module. =head1 METHODS =head2 new() Constructor. =cut sub new { my ($class, $args) = @_; return bless $args, $class; } =head1 API Some description of API. =begin apidoc %basic = ( alpha => 'beta', gamma => 'delta', ); =end apidoc More description of API. =begin apidoc %ordinary = ( epsilon => 'zeta', eta => 'theta', ); =end apidoc =head1 SYSTEMS Some description of systems. =begin sysdoc %bold = ( iota => 'kappa', lambda => 'mu', ); =end sysdoc =cut 1;