]> Dogcows Code - chaz/graphql-client/blob - lib/GraphQL/Client/https.pm
Version 0.603
[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 = '0.603'; # VERSION
10
11 sub new {
12 my $class = shift;
13 GraphQL::Client::http->new(@_);
14 }
15
16 1;
17
18 __END__
19
20 =pod
21
22 =encoding UTF-8
23
24 =head1 NAME
25
26 GraphQL::Client::https - GraphQL over HTTPS
27
28 =head1 VERSION
29
30 version 0.603
31
32 =head1 DESCRIPTION
33
34 This is the same as L<GraphQL::Client::http>.
35
36 =head1 SEE ALSO
37
38 L<GraphQL::Client::http>
39
40 =head1 BUGS
41
42 Please report any bugs or feature requests on the bugtracker website
43 L<https://github.com/chazmcgarvey/graphql-client/issues>
44
45 When submitting a bug or request, please include a test-file or a
46 patch to an existing test-file that illustrates the bug or desired
47 feature.
48
49 =head1 AUTHOR
50
51 Charles McGarvey <chazmcgarvey@brokenzipper.com>
52
53 =head1 COPYRIGHT AND LICENSE
54
55 This software is copyright (c) 2020 by Charles McGarvey.
56
57 This is free software; you can redistribute it and/or modify it under
58 the same terms as the Perl 5 programming language system itself.
59
60 =cut
This page took 0.035438 seconds and 4 git commands to generate.