@grucloud/core
Version:
GruCloud core, generate infrastructure code
30 lines (27 loc) • 487 B
JavaScript
const assert = require("assert");
module.exports = ({ resources, provider }) => {
return {
onDeployed: {
init: async () => {
return {};
},
actions: [
{
name: "TODO",
command: async ({}) => {},
},
],
},
onDestroyed: {
init: async () => {
return {};
},
actions: [
{
name: "Perform check",
command: async ({}) => {},
},
],
},
};
};