File: obj_yaml.pm

package info (click to toggle)
libgo-perl 0.13-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 7,404 kB
  • sloc: perl: 13,104; sh: 21; makefile: 6
file content (13 lines) | stat: -rw-r--r-- 188 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
package GO::Handlers::obj_yaml;
use base qw(GO::Handlers::obj);
use strict;
use YAML;

sub e_obo {
    my $self = shift;
    my $g = $self->g;
    $self->print(Dump $g);
    return;
}

1;