Skip to content

Commit

Permalink
Code stub
Browse files Browse the repository at this point in the history
  • Loading branch information
tshemsedinov committed Nov 24, 2020
1 parent b52afbc commit b05a9ae
Show file tree
Hide file tree
Showing 4 changed files with 4,683 additions and 0 deletions.
10 changes: 10 additions & 0 deletions lib/client.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
'use strict';

const Client = function() {
};

const client = () => new Client();

module.exports = {
client
};
8 changes: 8 additions & 0 deletions metacom.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
'use strict';

const submodules = [
'client' // Metacom client
].map(path => require('./lib/' + path));

const { client } = submodules[0];
module.exports = Object.assign(client, ...submodules);
Loading

0 comments on commit b05a9ae

Please sign in to comment.