NAME

Venus::Role - Role Builder

ABSTRACT

Role Builder for Perl 5

SYNOPSIS

package Exemplar;

use Venus::Role;

sub handshake {
  return true;
}

package Example;

use Venus::Class;

with 'Exemplar';

package main;

my $example = Example->new;

# $example->handshake;

DESCRIPTION

This package modifies the consuming package making it a modified Moo role, i.e. Moo::Role. All functions in Venus are automatically imported unless routines of the same name already exist.

INTEGRATES

This package integrates behaviors from:

Moo::Role

AUTHORS

Cpanery, cpanery@cpan.org

LICENSE

Copyright (C) 2021, Cpanery

Read the "license" file.