]> Dogcows Code - chaz/graphql-client/blob - lib/GraphQL/Client/https.pm
initial commit
[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.036858 seconds and 5 git commands to generate.