UNPKG

cfn-forge

Version:

CloudFormation deployment automation tool with git-based workflows

19 lines (16 loc) 444 B
/** * Core Interfaces Export * Exports all interface definitions for external use */ const IGitManager = require('./IGitManager'); const IFileWatcher = require('./IFileWatcher'); const ICloudFormation = require('./ICloudFormation'); const IDeploymentEngine = require('./IDeploymentEngine'); const IS3Client = require('./IS3Client'); module.exports = { IGitManager, IFileWatcher, ICloudFormation, IDeploymentEngine, IS3Client, };