Blame view

services/ContentService.js 501 Bytes
eb28d472   Surasit Yerpui   update Service
1
const flexMsg = require("./flexMsg");
f4bbcb63   Surasit Yerpui   เพิ่ม ตัวอย่าง ac...
2
const { action } = require("../exampleMassage/action.json");
eb28d472   Surasit Yerpui   update Service
3
4
5
const genMsgContent = flexMsg.GenContentFlex;
const flexs = flexMsg.flexs;

eb28d472   Surasit Yerpui   update Service
6
7
8
9
10
11
12
13
14
15
16
17
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,
f4bbcb63   Surasit Yerpui   เพิ่ม ตัวอย่าง ac...
18
      action: action,
eb28d472   Surasit Yerpui   update Service
19
20
21
22
23
    };
  },
};

module.exports = ContentService;