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