forked from oracle/bots-node-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
33 lines (31 loc) · 816 Bytes
/
index.js
File metadata and controls
33 lines (31 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
'use strict';
/**
* Copyright © 2018, Oracle and/or its affiliates. All rights reserved.
*
* The Universal Permissive License (UPL), Version 1.0
*/
const init = require('./init/');
const Middleware = require('./middleware/');
const Lib = require('./lib/');
const Util = require('./util/');
const Config = require('./config/');
/**
* This is the top level entrypoint to this package.
* Each of the exports below exposes the corresponding module's namespace
* from the associative '{name}/index.js' file. As a result, consumers can access
* each namespace as a key in the root module.
*
* ```javascript
* const OracleBot = require('@oracle/bots-node-sdk');
* OracleBot.Middleware //...
* OracleBot.Util //...
* // etc...
* ```
*/
module.exports = {
init,
Middleware,
Lib,
Util,
Config,
};