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