NAME
    Kelp::Module::Config::ConfigGeneral - Config::General in your Kelp
    application
SYNOPSIS
        # app.psgi
        use MyApp;
        my $app = MyApp->new( config_module => 'Config::ConfigGeneral' );
        $app->run;
DESCRIPTION
    This module provides support of Config::General in your Kelp
    applications.
    Because Config::General provides key/value interface you are not able
    to create array of arrays for your Kelp::Module::Logger configuration.
    This module does it for you.
    Example: modules = [ Logger ]
        
          
             name      debug
             min_level debug
             newline   1
             binmode   :encoding(UTF-8)
          
          
             name      error
             min_level error
             newline   1
             stderr    1
             binmode   :encoding(UTF-8)
          
        
AUTHOR
    Konstantin Yakunin 
COPYRIGHT
    Copyright 2017- Konstantin Yakunin
LICENSE
    This library is free software; you can redistribute it and/or modify it
    under the same terms as Perl itself.
SEE ALSO