Net::Google::Calendar::Backend - store and retrieve entries. Should be subclassed.


Net-Google-Calendar-Server documentation Contained in the Net-Google-Calendar-Server distribution.

Index


Code Index:

NAME

Top

Net::Google::Calendar::Backend - store and retrieve entries. Should be subclassed.


Net-Google-Calendar-Server documentation Contained in the Net-Google-Calendar-Server distribution.

package Net::Google::Calendar::Backend;

use strict;

sub new {
    my $class = shift;
    my %opts  = @_;

    return bless \%opts, $class;
}

1;