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

30 lines
656 B
Perl
Raw Normal View History

2015-07-11 10:41:55 -07:00
package DDG::Goodie::IsAwesome::er0k;
2015-07-11 10:52:16 -07:00
# ABSTRACT: er0k's goodie
2015-07-11 10:41:55 -07:00
use DDG::Goodie;
use strict;
zci answer_type => "is_awesome_er0k";
zci is_cached => 1;
2015-07-11 10:52:16 -07:00
# Metadata
2015-07-11 10:41:55 -07:00
name "IsAwesome er0k";
2015-07-11 10:52:16 -07:00
description "doin tutorials yup";
primary_example_queries "duckduckhack er0k";
category "special";
topics "special_interest", "geek";
2015-07-11 10:41:55 -07:00
code_url "https://github.com/duckduckgo/zeroclickinfo-goodies/blob/master/lib/DDG/Goodie/IsAwesome/er0k.pm";
attribution github => ["https://github.com/er0k", "er0k"],
2015-07-11 10:52:16 -07:00
twitter => "";
2015-07-11 10:41:55 -07:00
# Triggers
triggers any => "duckduckhack er0k";
# Handle statement
handle remainder => sub {
return if $_;
2015-07-11 10:52:16 -07:00
return ":)";
2015-07-11 10:41:55 -07:00
};
1;