]> Dogcows Code - chaz/graphql-client/blob - lib/GraphQL/Client/https.pm
add tests and many fixes
[chaz/graphql-client] / lib / GraphQL / Client / https.pm
1 package GraphQL::Client::https;
2 # ABSTRACT: GraphQL over HTTPS
3
4 use warnings;
5 use strict;
6
7 use parent 'GraphQL::Client::http';
8
9 our $VERSION = '999.999'; # VERSION
10
11 sub new {
12 my $class = shift;
13 GraphQL::Client::http->new(@_);
14 }
15
16 1;
17 __END__
18
19 =head1 DESCRIPTION
20
21 This is the same as L<GraphQL::Client::http>.
22
23 =head1 SEE ALSO
24
25 L<GraphQL::Client::http>
This page took 0.0392 seconds and 4 git commands to generate.