Initial commit
[webservice-foaas.git] / lib / WebService / FOAAS.pm
CommitLineData
943f1904
MG
1package WebService::FOAAS;
2
3=encoding utf-8
4
5=head1 NAME
6
7WebService::FOAAS - API client for https://foaas.com
8
9=head1 SYNOPSIS
10
11 use WebService::FOAAS;
12 print foaas_too 'MGV'; # Thanks, fuck you too. - MGV
13 print foaas_cool 'MGV', {shoutcloud => 1}; # COOL STORY, BRO. - MGV
14
15=head1 DESCRIPTION
16
17FOAAS (Fuck Off As A Service) provides a modern, RESTful, scalable
18solution to the common problem of telling people to fuck off.
19
20C<WebService::FOAAS> is an API client for FOAAS. It provides a series
21of methods for getting data from the service.
22
23The methods are listed below, and documented on the FOAAS webpage.
24Each method comes under two names, C<thing> and C<foaas_thing>.
25They are identical in function, but only C<foaas_thing> is exported by
26default while C<thing> is only exported on request.
27
28=cut
29
30use 5.014000;
31use strict;
32use warnings;
33
34use HTTP::Tiny;
35use URI::Escape;
36
37use parent qw/Exporter/;
38
39our $VERSION = '0.001';
40our $BASE = 'https://foaas.com';
41
42our $ht = HTTP::Tiny->new;
43
44sub request {
45 my (@args) = @_;
46 my @query;
47 if (ref $args[$#args] eq 'HASH') {
48 my $query = pop @args;
49 for (keys %$query) {
50 my $key = uri_escape_utf8 $_;
51 my $val = uri_escape_utf8 $query->{$_};
52 push @query, "$key=$val";
53 }
54 }
55
56 my $query = @query ? '?'.(join '&', @query) : '';
57 my $path = join '/', '', @args;
58 my $final_url = $BASE.$path.$query;
59
60 my $result = $ht->get($final_url, {headers => {Accept => 'text/plain'}});
61 die $result->{reason} unless $result->{success};
62 $result->{content}
63}
64
65### Start of code generated by WebService::FOAAS::Codegen->run
66
67=head1 AVAILABLE METHODS
68
69=over
70
71=item foaas_anyway $company, $from
72
73=cut
74
75sub foaas_anyway {
76 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
77 request 'anyway', @_;
78}
79
80BEGIN { *anyway = \&foaas_anyway }
81
82=item foaas_awesome $from
83
84=cut
85
86sub foaas_awesome {
87 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
88 request 'awesome', @_;
89}
90
91BEGIN { *awesome = \&foaas_awesome }
92
93=item foaas_back $name, $from
94
95=cut
96
97sub foaas_back {
98 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
99 request 'back', @_;
100}
101
102BEGIN { *back = \&foaas_back }
103
104=item foaas_bag $from
105
106=cut
107
108sub foaas_bag {
109 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
110 request 'bag', @_;
111}
112
113BEGIN { *bag = \&foaas_bag }
114
115=item foaas_ballmer $name, $company, $from
116
117=cut
118
119sub foaas_ballmer {
120 die "Expected 3 arguments" unless @_ == 3 || @_ == 4;
121 request 'ballmer', @_;
122}
123
124BEGIN { *ballmer = \&foaas_ballmer }
125
126=item foaas_bday $name, $from
127
128=cut
129
130sub foaas_bday {
131 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
132 request 'bday', @_;
133}
134
135BEGIN { *bday = \&foaas_bday }
136
137=item foaas_because $from
138
139=cut
140
141sub foaas_because {
142 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
143 request 'because', @_;
144}
145
146BEGIN { *because = \&foaas_because }
147
148=item foaas_blackadder $name, $from
149
150=cut
151
152sub foaas_blackadder {
153 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
154 request 'blackadder', @_;
155}
156
157BEGIN { *blackadder = \&foaas_blackadder }
158
159=item foaas_bm $name, $from
160
161=cut
162
163sub foaas_bm {
164 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
165 request 'bm', @_;
166}
167
168BEGIN { *bm = \&foaas_bm }
169
170=item foaas_bucket $from
171
172=cut
173
174sub foaas_bucket {
175 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
176 request 'bucket', @_;
177}
178
179BEGIN { *bucket = \&foaas_bucket }
180
181=item foaas_bus $name, $from
182
183=cut
184
185sub foaas_bus {
186 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
187 request 'bus', @_;
188}
189
190BEGIN { *bus = \&foaas_bus }
191
192=item foaas_bye $from
193
194=cut
195
196sub foaas_bye {
197 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
198 request 'bye', @_;
199}
200
201BEGIN { *bye = \&foaas_bye }
202
203=item foaas_caniuse $tool, $from
204
205=cut
206
207sub foaas_caniuse {
208 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
209 request 'caniuse', @_;
210}
211
212BEGIN { *caniuse = \&foaas_caniuse }
213
214=item foaas_chainsaw $name, $from
215
216=cut
217
218sub foaas_chainsaw {
219 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
220 request 'chainsaw', @_;
221}
222
223BEGIN { *chainsaw = \&foaas_chainsaw }
224
225=item foaas_cocksplat $name, $from
226
227=cut
228
229sub foaas_cocksplat {
230 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
231 request 'cocksplat', @_;
232}
233
234BEGIN { *cocksplat = \&foaas_cocksplat }
235
236=item foaas_cool $from
237
238=cut
239
240sub foaas_cool {
241 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
242 request 'cool', @_;
243}
244
245BEGIN { *cool = \&foaas_cool }
246
247=item foaas_dalton $name, $from
248
249=cut
250
251sub foaas_dalton {
252 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
253 request 'dalton', @_;
254}
255
256BEGIN { *dalton = \&foaas_dalton }
257
258=item foaas_deraadt $name, $from
259
260=cut
261
262sub foaas_deraadt {
263 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
264 request 'deraadt', @_;
265}
266
267BEGIN { *deraadt = \&foaas_deraadt }
268
269=item foaas_diabetes $from
270
271=cut
272
273sub foaas_diabetes {
274 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
275 request 'diabetes', @_;
276}
277
278BEGIN { *diabetes = \&foaas_diabetes }
279
280=item foaas_donut $name, $from
281
282=cut
283
284sub foaas_donut {
285 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
286 request 'donut', @_;
287}
288
289BEGIN { *donut = \&foaas_donut }
290
291=item foaas_dosomething $do, $something, $from
292
293=cut
294
295sub foaas_dosomething {
296 die "Expected 3 arguments" unless @_ == 3 || @_ == 4;
297 request 'dosomething', @_;
298}
299
300BEGIN { *dosomething = \&foaas_dosomething }
301
302=item foaas_everyone $from
303
304=cut
305
306sub foaas_everyone {
307 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
308 request 'everyone', @_;
309}
310
311BEGIN { *everyone = \&foaas_everyone }
312
313=item foaas_everything $from
314
315=cut
316
317sub foaas_everything {
318 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
319 request 'everything', @_;
320}
321
322BEGIN { *everything = \&foaas_everything }
323
324=item foaas_family $from
325
326=cut
327
328sub foaas_family {
329 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
330 request 'family', @_;
331}
332
333BEGIN { *family = \&foaas_family }
334
335=item foaas_fascinating $from
336
337=cut
338
339sub foaas_fascinating {
340 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
341 request 'fascinating', @_;
342}
343
344BEGIN { *fascinating = \&foaas_fascinating }
345
346=item foaas_field $name, $from, $reference
347
348=cut
349
350sub foaas_field {
351 die "Expected 3 arguments" unless @_ == 3 || @_ == 4;
352 request 'field', @_;
353}
354
355BEGIN { *field = \&foaas_field }
356
357=item foaas_flying $from
358
359=cut
360
361sub foaas_flying {
362 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
363 request 'flying', @_;
364}
365
366BEGIN { *flying = \&foaas_flying }
367
368=item foaas_gfy $name, $from
369
370=cut
371
372sub foaas_gfy {
373 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
374 request 'gfy', @_;
375}
376
377BEGIN { *gfy = \&foaas_gfy }
378
379=item foaas_give $from
380
381=cut
382
383sub foaas_give {
384 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
385 request 'give', @_;
386}
387
388BEGIN { *give = \&foaas_give }
389
390=item foaas_greed $noun, $from
391
392=cut
393
394sub foaas_greed {
395 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
396 request 'greed', @_;
397}
398
399BEGIN { *greed = \&foaas_greed }
400
401=item foaas_horse $from
402
403=cut
404
405sub foaas_horse {
406 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
407 request 'horse', @_;
408}
409
410BEGIN { *horse = \&foaas_horse }
411
412=item foaas_ing $name, $from
413
414=cut
415
416sub foaas_ing {
417 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
418 request 'ing', @_;
419}
420
421BEGIN { *ing = \&foaas_ing }
422
423=item foaas_keep $name, $from
424
425=cut
426
427sub foaas_keep {
428 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
429 request 'keep', @_;
430}
431
432BEGIN { *keep = \&foaas_keep }
433
434=item foaas_keepcalm $reaction, $from
435
436=cut
437
438sub foaas_keepcalm {
439 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
440 request 'keepcalm', @_;
441}
442
443BEGIN { *keepcalm = \&foaas_keepcalm }
444
445=item foaas_king $name, $from
446
447=cut
448
449sub foaas_king {
450 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
451 request 'king', @_;
452}
453
454BEGIN { *king = \&foaas_king }
455
456=item foaas_life $from
457
458=cut
459
460sub foaas_life {
461 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
462 request 'life', @_;
463}
464
465BEGIN { *life = \&foaas_life }
466
467=item foaas_linus $name, $from
468
469=cut
470
471sub foaas_linus {
472 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
473 request 'linus', @_;
474}
475
476BEGIN { *linus = \&foaas_linus }
477
478=item foaas_look $name, $from
479
480=cut
481
482sub foaas_look {
483 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
484 request 'look', @_;
485}
486
487BEGIN { *look = \&foaas_look }
488
489=item foaas_looking $from
490
491=cut
492
493sub foaas_looking {
494 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
495 request 'looking', @_;
496}
497
498BEGIN { *looking = \&foaas_looking }
499
500=item foaas_madison $name, $from
501
502=cut
503
504sub foaas_madison {
505 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
506 request 'madison', @_;
507}
508
509BEGIN { *madison = \&foaas_madison }
510
511=item foaas_maybe $from
512
513=cut
514
515sub foaas_maybe {
516 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
517 request 'maybe', @_;
518}
519
520BEGIN { *maybe = \&foaas_maybe }
521
522=item foaas_me $from
523
524=cut
525
526sub foaas_me {
527 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
528 request 'me', @_;
529}
530
531BEGIN { *me = \&foaas_me }
532
533=item foaas_mornin $from
534
535=cut
536
537sub foaas_mornin {
538 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
539 request 'mornin', @_;
540}
541
542BEGIN { *mornin = \&foaas_mornin }
543
544=item foaas_no $from
545
546=cut
547
548sub foaas_no {
549 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
550 request 'no', @_;
551}
552
553BEGIN { *no = \&foaas_no }
554
555=item foaas_nugget $name, $from
556
557=cut
558
559sub foaas_nugget {
560 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
561 request 'nugget', @_;
562}
563
564BEGIN { *nugget = \&foaas_nugget }
565
566=item foaas_off $name, $from
567
568=cut
569
570sub foaas_off {
571 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
572 request 'off', @_;
573}
574
575BEGIN { *off = \&foaas_off }
576
577=item foaas_off_with $behavior, $from
578
579=cut
580
581sub foaas_off_with {
582 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
583 request 'off_with', @_;
584}
585
586BEGIN { *off_with = \&foaas_off_with }
587
588=item foaas_outside $name, $from
589
590=cut
591
592sub foaas_outside {
593 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
594 request 'outside', @_;
595}
596
597BEGIN { *outside = \&foaas_outside }
598
599=item foaas_particular $thing, $from
600
601=cut
602
603sub foaas_particular {
604 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
605 request 'particular', @_;
606}
607
608BEGIN { *particular = \&foaas_particular }
609
610=item foaas_pink $from
611
612=cut
613
614sub foaas_pink {
615 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
616 request 'pink', @_;
617}
618
619BEGIN { *pink = \&foaas_pink }
620
621=item foaas_problem $name, $from
622
623=cut
624
625sub foaas_problem {
626 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
627 request 'problem', @_;
628}
629
630BEGIN { *problem = \&foaas_problem }
631
632=item foaas_pulp $language, $from
633
634=cut
635
636sub foaas_pulp {
637 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
638 request 'pulp', @_;
639}
640
641BEGIN { *pulp = \&foaas_pulp }
642
643=item foaas_retard $from
644
645=cut
646
647sub foaas_retard {
648 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
649 request 'retard', @_;
650}
651
652BEGIN { *retard = \&foaas_retard }
653
654=item foaas_ridiculous $from
655
656=cut
657
658sub foaas_ridiculous {
659 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
660 request 'ridiculous', @_;
661}
662
663BEGIN { *ridiculous = \&foaas_ridiculous }
664
665=item foaas_rtfm $from
666
667=cut
668
669sub foaas_rtfm {
670 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
671 request 'rtfm', @_;
672}
673
674BEGIN { *rtfm = \&foaas_rtfm }
675
676=item foaas_sake $from
677
678=cut
679
680sub foaas_sake {
681 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
682 request 'sake', @_;
683}
684
685BEGIN { *sake = \&foaas_sake }
686
687=item foaas_shakespeare $name, $from
688
689=cut
690
691sub foaas_shakespeare {
692 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
693 request 'shakespeare', @_;
694}
695
696BEGIN { *shakespeare = \&foaas_shakespeare }
697
698=item foaas_shit $from
699
700=cut
701
702sub foaas_shit {
703 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
704 request 'shit', @_;
705}
706
707BEGIN { *shit = \&foaas_shit }
708
709=item foaas_shutup $name, $from
710
711=cut
712
713sub foaas_shutup {
714 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
715 request 'shutup', @_;
716}
717
718BEGIN { *shutup = \&foaas_shutup }
719
720=item foaas_single $from
721
722=cut
723
724sub foaas_single {
725 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
726 request 'single', @_;
727}
728
729BEGIN { *single = \&foaas_single }
730
731=item foaas_thanks $from
732
733=cut
734
735sub foaas_thanks {
736 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
737 request 'thanks', @_;
738}
739
740BEGIN { *thanks = \&foaas_thanks }
741
742=item foaas_that $from
743
744=cut
745
746sub foaas_that {
747 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
748 request 'that', @_;
749}
750
751BEGIN { *that = \&foaas_that }
752
753=item foaas_think $name, $from
754
755=cut
756
757sub foaas_think {
758 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
759 request 'think', @_;
760}
761
762BEGIN { *think = \&foaas_think }
763
764=item foaas_thinking $name, $from
765
766=cut
767
768sub foaas_thinking {
769 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
770 request 'thinking', @_;
771}
772
773BEGIN { *thinking = \&foaas_thinking }
774
775=item foaas_this $from
776
777=cut
778
779sub foaas_this {
780 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
781 request 'this', @_;
782}
783
784BEGIN { *this = \&foaas_this }
785
786=item foaas_thumbs $name, $from
787
788=cut
789
790sub foaas_thumbs {
791 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
792 request 'thumbs', @_;
793}
794
795BEGIN { *thumbs = \&foaas_thumbs }
796
797=item foaas_too $from
798
799=cut
800
801sub foaas_too {
802 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
803 request 'too', @_;
804}
805
806BEGIN { *too = \&foaas_too }
807
808=item foaas_tucker $from
809
810=cut
811
812sub foaas_tucker {
813 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
814 request 'tucker', @_;
815}
816
817BEGIN { *tucker = \&foaas_tucker }
818
819=item foaas_version
820
821=cut
822
823sub foaas_version {
824 die "Expected 0 arguments" unless @_ == 0 || @_ == 1;
825 request 'version', @_;
826}
827
828BEGIN { *version = \&foaas_version }
829
830=item foaas_what $from
831
832=cut
833
834sub foaas_what {
835 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
836 request 'what', @_;
837}
838
839BEGIN { *what = \&foaas_what }
840
841=item foaas_xmas $name, $from
842
843=cut
844
845sub foaas_xmas {
846 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
847 request 'xmas', @_;
848}
849
850BEGIN { *xmas = \&foaas_xmas }
851
852=item foaas_yoda $name, $from
853
854=cut
855
856sub foaas_yoda {
857 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
858 request 'yoda', @_;
859}
860
861BEGIN { *yoda = \&foaas_yoda }
862
863=item foaas_you $name, $from
864
865=cut
866
867sub foaas_you {
868 die "Expected 2 arguments" unless @_ == 2 || @_ == 3;
869 request 'you', @_;
870}
871
872BEGIN { *you = \&foaas_you }
873
874=item foaas_zayn $from
875
876=cut
877
878sub foaas_zayn {
879 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
880 request 'zayn', @_;
881}
882
883BEGIN { *zayn = \&foaas_zayn }
884
885=item foaas_zero $from
886
887=cut
888
889sub foaas_zero {
890 die "Expected 1 arguments" unless @_ == 1 || @_ == 2;
891 request 'zero', @_;
892}
893
894BEGIN { *zero = \&foaas_zero }
895
896BEGIN {
897 our @EXPORT = qw/foaas_anyway foaas_awesome foaas_back foaas_bag foaas_ballmer foaas_bday foaas_because foaas_blackadder foaas_bm foaas_bucket foaas_bus foaas_bye foaas_caniuse foaas_chainsaw foaas_cocksplat foaas_cool foaas_dalton foaas_deraadt foaas_diabetes foaas_donut foaas_dosomething foaas_everyone foaas_everything foaas_family foaas_fascinating foaas_field foaas_flying foaas_gfy foaas_give foaas_greed foaas_horse foaas_ing foaas_keep foaas_keepcalm foaas_king foaas_life foaas_linus foaas_look foaas_looking foaas_madison foaas_maybe foaas_me foaas_mornin foaas_no foaas_nugget foaas_off foaas_off_with foaas_outside foaas_particular foaas_pink foaas_problem foaas_pulp foaas_retard foaas_ridiculous foaas_rtfm foaas_sake foaas_shakespeare foaas_shit foaas_shutup foaas_single foaas_thanks foaas_that foaas_think foaas_thinking foaas_this foaas_thumbs foaas_too foaas_tucker foaas_version foaas_what foaas_xmas foaas_yoda foaas_you foaas_zayn foaas_zero/;
898 our @EXPORT_OK = qw/foaas_anyway foaas_awesome foaas_back foaas_bag foaas_ballmer foaas_bday foaas_because foaas_blackadder foaas_bm foaas_bucket foaas_bus foaas_bye foaas_caniuse foaas_chainsaw foaas_cocksplat foaas_cool foaas_dalton foaas_deraadt foaas_diabetes foaas_donut foaas_dosomething foaas_everyone foaas_everything foaas_family foaas_fascinating foaas_field foaas_flying foaas_gfy foaas_give foaas_greed foaas_horse foaas_ing foaas_keep foaas_keepcalm foaas_king foaas_life foaas_linus foaas_look foaas_looking foaas_madison foaas_maybe foaas_me foaas_mornin foaas_no foaas_nugget foaas_off foaas_off_with foaas_outside foaas_particular foaas_pink foaas_problem foaas_pulp foaas_retard foaas_ridiculous foaas_rtfm foaas_sake foaas_shakespeare foaas_shit foaas_shutup foaas_single foaas_thanks foaas_that foaas_think foaas_thinking foaas_this foaas_thumbs foaas_too foaas_tucker foaas_version foaas_what foaas_xmas foaas_yoda foaas_you foaas_zayn foaas_zero anyway awesome back bag ballmer bday because blackadder bm bucket bus bye caniuse chainsaw cocksplat cool dalton deraadt diabetes donut dosomething everyone everything family fascinating field flying gfy give greed horse ing keep keepcalm king life linus look looking madison maybe me mornin no nugget off off_with outside particular pink problem pulp retard ridiculous rtfm sake shakespeare shit shutup single thanks that think thinking this thumbs too tucker version what xmas yoda you zayn zero/;
899}
900
901=back
902
903=cut
904
905### End of code generated by WebService::FOAAS::Codegen->run
906
9071;
908__END__
909
910=head1 SEE ALSO
911
912L<https://foaas.com>
913
914=head1 AUTHOR
915
916Marius Gavrilescu E<lt>marius@ieval.roE<gt>
917
918=head1 COPYRIGHT AND LICENSE
919
920Copyright (C) 2017 by Marius Gavrilescu
921
922This library is free software; you can redistribute it and/or modify
923it under the same terms as Perl itself, either Perl version 5.22.3 or,
924at your option, any later version of Perl 5 you may have available.
925
926
927=cut
This page took 0.056117 seconds and 4 git commands to generate.