This commit is contained in:
2026-08-11 23:10:22 -06:00
commit 6fec70c7c8
13 changed files with 334 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
package CW::Controller::Index;
use Moo;
with 'CW::Controller';
sub index {
my ( $self, $request, $response ) = @_;
$response->template(
[
head => [],
body => [
h1 => ["Foo Bar!"]
]
]
);
}
1;