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