Initial commit
This commit is contained in:
11
lib/MojoApp/Controller/Example.pm
Normal file
11
lib/MojoApp/Controller/Example.pm
Normal file
@@ -0,0 +1,11 @@
|
||||
package MojoApp::Controller::Example;
|
||||
use Mojo::Base 'Mojolicious::Controller', -signatures;
|
||||
|
||||
# This action will render a template
|
||||
sub welcome ($self) {
|
||||
|
||||
# Render template "example/welcome.html.ep" with message
|
||||
$self->render(msg => 'Welcome to the Mojolicious real-time web framework!');
|
||||
}
|
||||
|
||||
1;
|
||||
Reference in New Issue
Block a user