package SPVM::Time; 1; =head1 Name SPVM::Time - Time Manipulation =head1 Usage use Time; # Get the current epoch time my $epoch = Time->time; # Convert a epoch time to the Time::Info object that is local time my $time_info_local = Time->localtime($epoch); # Convert a epoch time to the Time::Info object that is UTC my $time_info_utc = Time->gmtime($epoch); =head1 Description C