/**
* @file DuckDuckGo/API.php
* This file provides the base class to interface with the DuckDuckGo API.
* It will also include any necessary classes.
* Simple example:
* $api = new DuckDuckGo\API();
* $info = $api->zeroClickQuery('Internet Relay Chat');
* echo $info->definition;
namespace DuckDuckGo;
/* Include the necessary classes. */
require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'APIResult.php';
/**
* The API base URL. This defaults to api.duckduckgo.com.
$this->noDisambiguations = FALSE;
$this->baseURL = 'api.duckduckgo.com';