Files
compiled.world/lib/CW/Layout.pm
2026-08-15 23:05:57 -06:00

19 lines
267 B
Perl

package CW::Layout;
use Moo;
use Types::Standard qw(HashRef InstanceOf);
has template => (
is => 'ro',
required => 1,
isa => InstanceOf ['CW::Template']
);
has ctx => (
is => 'ro',
required => 1,
isa => HashRef
);
1;