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