forked from AlgoTrader/betfair-sports-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
26 lines (19 loc) · 978 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// (C) 2012 Anton Zemlyanov
//
// Betfair Sports API for node
// see Sports API documentation on http://bdp.betfair.com
//
// Exported properties:
// newSession - create Betfair Session
var betfairSession = require('./lib/betfair_session');
exports.newSession = betfairSession.newSession;
var betfairDecompress = require('./lib/betfair_decompress');
exports.addDesirableMarketName = betfairDecompress.addDesirableMarketName;
var betfairPrice = require('./lib/betfair_price');
exports.newBetfairPrice = betfairPrice.newBetfairPrice;
var betfairInvocation = require('./lib/betfair_invocation');
exports.isBetEmulationEnabled = betfairInvocation.isBetEmulationEnabled;
exports.setBetEmulationEnabled = betfairInvocation.setBetEmulationEnabled;
exports.setXmlLoggingEnabled = betfairInvocation.setXmlLoggingEnabled;
var betfairInvocationHistory = require('./lib/betfair_invocation_history');
exports.getInvocationHistory = betfairInvocationHistory.getInvocationHistory;