NAME
Net::Google::DataAPI::Role::Service - provides base functionalities for Google Data API service
SYNOPSIS
package MyService;
use Any::Moose;
use Net::Google::DataAPI;
with 'Net::Google::DataAPI::Role::Service' => {
service => 'wise',
source => __PACKAGE__,
ns => {
foobar => 'http://example.com/schema#foobar',
},
}
feedurl hoge => (
is => 'ro',
isa => 'Str',
entry_class => 'MyService::Hoge',
default => 'http://example.com/feed/hoge',
);
1;
DESCRIPTION
AUTHOR
Nobuo Danjou <danjou@soffritto.org>