27 lines
878 B
Perl
27 lines
878 B
Perl
package DDG::Goodie::IsAwesome::JohnCarlosReed;
|
|
# ABSTRACT: JohnCarlosReed's first Goodie
|
|
|
|
use DDG::Goodie;
|
|
use strict;
|
|
|
|
zci answer_type => "is_awesome_john_carlos_reed";
|
|
zci is_cached => 1;
|
|
|
|
name "IsAwesome JohnCarlosReed";
|
|
description "My first Goodie, it let's the world know that JohnCarlosReed is awesome";
|
|
primary_example_queries "duckduckhack JohnCarlosReed";
|
|
category "entertainment";
|
|
topics "entertainment", "special_interest";
|
|
code_url "https://github.com/duckduckgo/zeroclickinfo-goodies/blob/master/lib/DDG/Goodie/IsAwesome/JohnCarlosReed.pm";
|
|
attribution github => ["https://github.com/JohnCarlosReed", "John Reed"],
|
|
twitter => "johnnycarlos";
|
|
|
|
triggers start => "duckduckhack johncarlosreed";
|
|
|
|
handle remainder => sub {
|
|
return if $_;
|
|
return "JohnCarlosReed is awesome and has successfully completed the DuckDuckHack Goodie tutorial!";
|
|
};
|
|
|
|
1;
|