2017-02-28 01:35:23 +03:00
|
|
|
'use strict';
|
|
|
|
|
2017-02-24 23:10:28 +03:00
|
|
|
var Contract = require('./contract.js');
|
|
|
|
var Interface = require('./interface.js');
|
2016-07-25 10:55:16 +03:00
|
|
|
|
2017-02-24 23:10:28 +03:00
|
|
|
module.exports = {
|
2017-03-01 10:34:52 +03:00
|
|
|
Contract: Contract,
|
2017-02-24 23:10:28 +03:00
|
|
|
Interface: Interface,
|
2016-07-21 11:21:44 +03:00
|
|
|
}
|
2017-02-28 01:35:23 +03:00
|
|
|
|