Randy Abernethy | 3b9ff4d | 2015-02-16 00:51:24 -0800 | [diff] [blame] | 1 | 'use strict'; |
2 | var thrift = require('../lib/thrift'); | ||||
3 | |||||
4 | module.exports.transports = { | ||||
5 | 'buffered': thrift.TBufferedTransport, | ||||
6 | 'framed': thrift.TFramedTransport | ||||
7 | }; | ||||
8 | |||||
9 | module.exports.protocols = { | ||||
10 | 'json': thrift.TJSONProtocol, | ||||
11 | 'binary': thrift.TBinaryProtocol, | ||||
12 | 'compact': thrift.TCompactProtocol | ||||
13 | }; |