Help for this page

Select Code to Download


  1. or download this
       package MyApp::Config {
          use Moo;
    ...
             decode_json( $self->config_file->slurp_utf8 );
          }
       }
    
  2. or download this
       has start_date => (
          is      => 'ro',
          isa     => DateTimeUTC,
          coerce  => 1,
       );