big kahuna

This commit is contained in:
2026-08-15 23:05:57 -06:00
parent 6fec70c7c8
commit 84893662ca
25 changed files with 3886 additions and 27 deletions

20
lib/CW/Template.pm Normal file
View File

@@ -0,0 +1,20 @@
package CW::Template;
use Moo;
use Types::Standard qw(HashRef);
has ctx => (
is => 'ro',
required => 1,
isa => HashRef
);
sub render {
my ($self) = @_;
return [
h1 => ["Undefined Template"],
p => [ "You should probably implement this template! " . ref($self) ]
];
}
1;