| App-HistHub documentation | Contained in the App-HistHub distribution. |
App::HistHub::Web - Web api for App::HistHub
script/app_histhub_web_server.pl
Daisuke Murase
This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.
| App-HistHub documentation | Contained in the App-HistHub distribution. |
package App::HistHub::Web; use strict; use warnings; use Catalyst::Runtime '5.70'; use parent qw/Catalyst/; use Catalyst qw/ ConfigLoader /; __PACKAGE__->config( default_view => 'TD', 'Plugin::ConfigLoader' => { file => __PACKAGE__->path_to('config')->stringify, }, ); __PACKAGE__->setup;
1;