sub handle {
    my ($self, $url) = @_;
    $url =~ qr!http://kichiku\.oq\.la/show/\d+!;
}

sub find {
    my($self, $args) = @_;

    my $uri = $args->{url} =~ qr!http://kichiku\.oq\.la/show/(\d+)! ? $1 : undef;
   if ($uri) {
        my $enclosure = Plagger::Enclosure->new;
        $uri = "http://kichiku.oq.la/images/$1.jpg";
        $enclosure->url($uri);
        $enclosure->auto_set_type;
        return $enclosure;
    }

    return;
}
