The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package MyTestApp::Schema::Post;
use Moose;
with 'Mongoose::Document' => { -collection_name=>'post' };

has 'title' => ( is=>'rw', isa=>'Str' );
has 'body'  => ( is=>'rw', isa=>'Str' );

1;