The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package CHI::Driver::Role::IsSubcache;
BEGIN {
  $CHI::Driver::Role::IsSubcache::VERSION = '0.55';
}
use Moose::Role;
use strict;
use warnings;

has 'parent_cache'  => ( is => 'ro', weak_ref => 1 );
has 'subcache_type' => ( is => 'ro' );

1;