/lib/DDG/Spice/Steam/Specials.pm
https://github.com/pardocz/zeroclickinfo-spice · Perl · 25 lines · 20 code · 4 blank · 1 comment · 0 complexity · 139b080c1129808e5752e042d52975e8 MD5 · raw file
- package DDG::Spice::Steam::Specials;
- # ABSTRACT: Fetch Steam Specials at Steam store.
- use DDG::Spice;
- name "steam";
- source "http://store.steampowered.com";
- description "Get featured games on sale at Steam store";
- primary_example_queries "steam specials";
- category "special";
- topics "gaming","entertainment";
- icon_url "/i/store.steampowered.com.ico";
- code_url "https://github.com/duckduckgo/zeroclickinfo-spice/blob/master/lib/DDG/Spice/Steam/Specials.pm";
- attribution github => ["https://github.com/killerfish", "Usman Raza"],
- twitter => ["https://twitter.com/f1shie", "Usman Raza"];
- triggers startend => "steam special", "steam specials", "steam store", "steam offers", "steam offer";
- spice to => 'http://store.steampowered.com/api/featuredcategories';
- spice proxy_cache_valid => "200 60m";
- spice wrap_jsonp_callback => 1;
- handle remainder => sub {
- return '';
- };
- 1;