Skip to content

Commit

Permalink
creating base class
Browse files Browse the repository at this point in the history
  • Loading branch information
ppant committed Mar 15, 2013
1 parent e2ce2c1 commit 5a69126
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions CSP.pm
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
package CSP;
use 5.010;
use Moose;
use strict;
use warnings;

our $VERSION = '0.01';

sub new {
my $class = shift;
my $self = bless { @_ }, $class;
return $self;
}

1;

=pod
=head1 CSP
=head1 Pradeep Pant
Copyright 2013
=cut

0 comments on commit 5a69126

Please sign in to comment.