ContentService.js 501 Bytes
const flexMsg = require("./flexMsg");
const { action } = require("../exampleMassage/action.json");
const genMsgContent = flexMsg.GenContentFlex;
const flexs = flexMsg.flexs;

const ContentService = {
  mockText: () => {
    return {
      flex0: flexs.flex0,
      flex1: flexs.flex1,

      bub1: flexs.bub1,
      bub2: flexs.bub2,
      bub3: flexs.bub3,
      bub4: flexs.bub4,
      bub5: flexs.bub5,
      bub6: flexs.bub6,
      action: action,
    };
  },
};

module.exports = ContentService;