Help for this page

Select Code to Download


  1. or download this
     run.pl
     lib.conf
    ...
             Controller
                  Invtot.pm
    
  2. or download this
    use strict;
    use warnings;
    ...
    use lib 'lib';
    use Mojolicious::Commands;
    Mojolicious::Commands->start_app('Lib')
    
  3. or download this
    package Lib;
    use Mojo::Base 'Mojolicious';
    ...
    }
    
    1;
    
  4. or download this
    package Invtot;
    use Mojo::Base 'Mojolicious';
    ...
        ); 
    }
    1;
    
  5. or download this
    package Invtot::Controller::Invtot;
    use Mojo::Base 'Mojolicious::Controller';
    ...
    }
    ... 
    1;
    
  6. or download this
    Class "Lib::Invtot" is not a controller
    Template "invtot/post.html.ep" not found