about summary refs log tree commit diff
path: root/lib/MooseX/Net/API/Parser/YAML.pm
blob: f35983177540d537da7fe2173e744e4369bb3aa7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package MooseX::Net::API::Parser::YAML;

use YAML::Syck;
use Moose;
extends 'MooseX::Net::API::Parser';

sub encode {
    my ($self, $content) = @_;
    return Dump($content);
}

sub decode {
    my ($self, $content) = @_;
    return Load($content);
}

1;