The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#
# (c) Jan Gehring <jan.gehring@gmail.com>
#
# vim: set ts=2 sw=2 tw=0:
# vim: set expandtab:

package Rex::Repositorio::Server::Docker::Helper::Auth;

use strict;
use warnings;

our $VERSION = '1.2.1'; # VERSION

sub create {
  my ( $class, $type, $config ) = @_;
  my $auth_class = "Rex::Repositorio::Server::Docker::Helper::Auth::$type";
  eval "use $auth_class;1;";
  if ($@) {
    die "Error finding auth class: $auth_class.";
  }
  my $klass = $auth_class->new( %{$config} );
  return $klass;
}

1;