Add entry point for node package

This commit is contained in:
Christoph Diehl 2018-03-19 04:37:40 +01:00
parent 142576ed49
commit ee570a8136
No known key found for this signature in database
GPG Key ID: 799CE5B68FEF404A
1 changed files with 11 additions and 0 deletions

11
index.js Normal file
View File

@ -0,0 +1,11 @@
const logger = require('./lib/logging')
const make = require('./lib/make')
const random = require('./lib/random')
const utils = require('./lib/utils')
module.exports = {
logger,
random,
make,
utils
}