714e049f8e513601fcd311a67bfd91c989886be2.svn-base 648 Bytes
/*
 * loggly.js: Wrapper for node-loggly object
 *
 * (C) 2010 Nodejitsu Inc.
 * MIT LICENSE
 *
 */

var loggly = exports;

//
// Export node-loggly core client APIs
//
loggly.createClient  = require('./loggly/core').createClient;
loggly.serialize     = require('./loggly/common').serialize;
loggly.Loggly        = require('./loggly/core').Loggly;
loggly.Config        = require('./loggly/config').Config;

//
// Export Resources for node-loggly
//
loggly.Input  = require('./loggly/input').Input;
loggly.Facet  = require('./loggly/facet').Facet;
loggly.Device = require('./loggly/device').Device;
loggly.Search = require('./loggly/search').Search;