The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package MyAttrs;
use MooseX::Attributes::Curried (
    has_str => {
        is  => 'bare',
        isa => 'Str',
    },
    has_int => {
        is      => 'bare',
        isa     => 'Int',
        default => 0,
    },
);

1;