# -----------------------------------------------------------------------------
# Milkbone::Plugin
# Desc: Stores information about each running plugin
# -----------------------------------------------------------------------------

package Milkbone::Plugin;

use strict;
use warnings;

sub new {
  my $class = shift;
  my $self = {
	      desc => '',
	      name => '',
	      package => ''
	     };

  bless $self, $class;
}

1;