UNPKG

exoframe-faas

Version:

Simple function deployments for Exoframe

18 lines (16 loc) 411 B
// export faas methods const {getLogsForFunction, listFunctions, registerFunction, removeFunction, setup} = require('./src/index'); const template = require('./src/template'); module.exports = { // logs getLogsForFunction, // listing listFunctions, // function registration and removal registerFunction, removeFunction, // init & middleware setup setup, // exoframe template template, };