initial import
[Net-DashCS.git] / lib / Net / DashCS.pm
1 package Net::DashCS;
2
3 use strict;
4 use vars qw( $VERSION );
5 $VERSION = '0.01';
6 sub Version { $VERSION };
7
8 1;
9
10 __END__
11
12 =head1 NAME
13
14 Net::DashCS - Perl client interface to Dash Carrier Services SOAP api
15
16 =head1 SYNOPSIS
17
18 use Net::DashCS::Interfaces::EmergencyProvisioningService::EmergencyProvisioningPort;
19
20 my $port = new Net::DashCS::Interfaces::EmergencyProvisioningService::EmergencyProvisioningPort;
21
22 my $response = $port->getURIs();
23
24 =head1 DESCRIPTION
25
26 Net::DashCS allows perl programs to perform provisioning of Dash Carrier
27 Services.  Presently on the Emergency provisioning is provided.
28
29 =head1 SEE ALSO
30
31 L<Net::DashCS::Interfaces::EmergencyProvisioningService::EmergencyProvisioningPort>  and http://dashcs.com
32
33 =head1 BUGS
34
35 Creepy.
36
37 =head1 AUTHOR AND COPYRIGHT
38
39 Jeff Finucane  jeff-net-dashcs@weasellips.com
40
41 This library is free software; you can redistribute it and/or modify it
42 under the same terms as Perl itself.
43
44 =cut