The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package CleaneeBridge;
use strict;
use warnings;

use namespace::clean ();

sub import {
    namespace::clean->import(
        -cleanee => scalar(caller),
        -except  => 'IGNORED',
    );
}

1;