Skip to content

Commit e8b46c2

Browse files
committed
add stub for webchat.io
* update version * allow both versions to sit side-by-side
1 parent e94cce6 commit e8b46c2

File tree

5 files changed

+2075
-2
lines changed

5 files changed

+2075
-2
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,5 @@ jspm_packages
3535

3636
# Optional REPL history
3737
.node_repl_history
38+
39+
.flowconfig

index.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
var Webchatbot = require('./webchatbot');
2+
var WebchatIOBot = require('./webchatiobot');
3+
4+
var bots = Webchatbot;
5+
bots.Webchatbot = Webchatbot;
6+
bots.WebchatIOBot = WebchatIOBot;
7+
8+
module.exports = bots;

0 commit comments

Comments
 (0)