zeroclickinfo-goodies/lib/DDG/Goodie/IsAwesome/jmvbxx.pm

25 lines
738 B
Perl
Raw Normal View History

2014-12-11 06:02:02 -08:00
package DDG::Goodie::IsAwesome::jmvbxx;
# ABSTRACT: jmvbxx's first Goodie
use DDG::Goodie;
2015-03-07 15:39:30 -08:00
use strict;
2014-12-11 06:02:02 -08:00
zci answer_type => "is_awesome_jmvbxx";
zci is_cached => 1;
name "IsAwesome jmvbxx";
description "My first Goodie, it let's the world know that jmvbxx is awesome";
primary_example_queries "duckduckhack jmvbxx";
category "special";
topics "special_interest", "geek";
code_url "https://github.com/duckduckgo/zeroclickinfo-goodies/blob/master/lib/DDG/Goodie/IsAwesome/jmvbxx.pm";
attribution github => ["https://github.com/jmvbxx", "jmvbxx"];
triggers start => "duckduckhack jmvbxx";
handle remainder => sub {
return if $_;
return "jmvbxx is awesome and has successfully completed the DuckDuckHack Goodie tutorial!";
};
1;