Skip to content

Commit

Permalink
ESConfig: clean up imports
Browse files Browse the repository at this point in the history
  • Loading branch information
haarg committed Nov 7, 2024
1 parent 1b7128d commit 7d091e7
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions lib/MetaCPAN/ESConfig.pm
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
use v5.20;
use warnings;
use experimental qw(signatures postderef);
use experimental qw( signatures postderef );

package MetaCPAN::ESConfig;

use Carp qw(croak);
use Const::Fast qw(const);
use Exporter qw(import);
use MetaCPAN::Util qw(root_dir);
use Module::Runtime qw(require_module $module_name_rx);
use Carp qw( croak );
use Const::Fast qw( const );
use Cpanel::JSON::XS ();
use Hash::Merge::Simple qw(merge);
use Exporter qw( import );
use Hash::Merge::Simple qw( merge );
use MetaCPAN::Server::Config ();
use MetaCPAN::Types::TypeTiny qw(HashRef Defined);
use Const::Fast qw(const);
use MetaCPAN::Types::TypeTiny qw( Defined HashRef );
use MetaCPAN::Util qw( root_dir );
use Module::Runtime qw( $module_name_rx require_module );

const my %config => merge(
{
Expand Down

0 comments on commit 7d091e7

Please sign in to comment.