The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package App::Services::Forker::Role;
{
  $App::Services::Forker::Role::VERSION = '0.002';
}    #-- Log service interface

use Moo::Role;

use common::sense;

has forker_svc => (
	is       => 'rw',
	isa      => sub { ref($_[0]) eq 'App::Services::Forker::Service' },
	handles  => [qw(forker)],
	required => 1,

);

no Moo::Role;

1;

__END__

=pod

=head1 NAME

App::Services::Forker::Role

=head1 VERSION

version 0.002

=head1 AUTHOR

Sean Blanton <sean@blanton.com>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Sean Blanton.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut