App::HistHub::Web - Web api for App::HistHub


App-HistHub documentation Contained in the App-HistHub distribution.

Index


Code Index:

NAME

Top

App::HistHub::Web - Web api for App::HistHub

SYNOPSIS

Top

    script/app_histhub_web_server.pl

SEE ALSO

Top

App::HistHub.

AUTHOR

Top

Daisuke Murase

LICENSE

Top

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;