App-Standby

 view release on metacpan or  search on metacpan

examples/simple/lib/App/Standby/Service/Simple.pm  view on Meta::CPAN

package App::Standby::Service::Simple;

use 5.010_000;
use mro 'c3';
use feature ':5.10';

use Moose;
use namespace::autoclean;

# use IO::Handle;
# use autodie;
# use MooseX::Params::Validate;
# use Carp;
# use English qw( -no_match_vars );
# use Try::Tiny;

# extends ...
extends 'App::Standby::Service::HTTP';
# has ...
# with ...
# initializers ...
sub _init_endpoints {
    my $self = shift;

    return $self->_config_values($self->name().'_endpoint');
}

# your code here ...

no Moose;
__PACKAGE__->meta->make_immutable;

1;

__END__

=head1 NAME

App::Standby::Service::Simple - Simple Service example

=cut



( run in 2.939 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )