
WebService::MusicBrainz

use WebService::MusicBrainz;
my $artist_ws = WebService::MusicBrainz->new_artist();
my $track_ws = WebService::MusicBrainz->new_track();
my $release_ws = WebService::MusicBrainz->new_release();

This module will act as a factory using static methods to return specific web service objects;

Return new instance of WebService::MusicBrainz::Artist object.
Return new instance of WebService::MusicBrainz::Track object.
Return new instance of WebService::MusicBrainz::Release object.


Copyright 2006 by Bob Faist
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
