Catalyst
- Request-handling code lives in Controllers
- Controllers have actions:
package YourApp::Controller::Whatever;
sub foo :Local { action goes here }
- Actions have URLs, here /whatever/foo.
- Root controller is /, not /root.
| Catalyst | Introducing Catalyst | #18 |
package YourApp::Controller::Whatever;
sub foo :Local { action goes here }
| "" |