]> Dogcows Code - chaz/graphql-client/blob - lib/GraphQL/Client/https.pm
56f2672747fd9f2594cbb44cbcb7ccb35e8b4725
[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 SEE ALSO
20
21 L<GraphQL::Client::http>
This page took 0.034471 seconds and 3 git commands to generate.