##
Can't locate object method "get_session" via package "main" (perhaps
you forgot to load "main"?) at bless_main.pl line 8.
$main_object is of type (main)
##
##
my $object = bless( {}, 'My::Object' );
##
##
sub new {
my ( $item ) = @_;
my $class = ref $item || $item;
return bless( {}, $class );
}