Store the script options in the engine.
[catagits/Catalyst-Runtime.git] / t / lib / ScriptTestApp / Controller / Root.pm
CommitLineData
aee7cdcc 1package ScriptTestApp::Controller::Root;
2use Moose;
3use namespace::autoclean;
4
5BEGIN { extends 'Catalyst::Controller' }
6
7sub default : Chained('/') PathPart('') Args() {}
8
91;
10