Acme-VOYAGEGROUP-ConferenceRoom
view release on metacpan or search on metacpan
lib/Acme/VOYAGEGROUP/ConferenceRoom/Output/JSON.pm view on Meta::CPAN
package Acme::VOYAGEGROUP::ConferenceRoom::Output::JSON;
use strict;
use warnings;
use utf8;
use JSON::XS;
sub convert {
my $class = shift;
my $lines = shift;
encode_json {
conference_room => join "\n", @{$lines}
};
}
1;
( run in 1.406 second using v1.01-cache-2.11-cpan-39bf76dae61 )