sub new {    my ($class, %arg_of) = @_;    my $self = bless {        _config => undef,    }, $class;    $self->{_config} = CMS::Config->new();    return $self; }