index.js 223 B

123456789101112
  1. const {
  2. db,
  3. _
  4. } = require("../../utils/http");
  5. async function LiveService(data) {
  6. const orilist = await db.collection('live').doc('AvrSA4TAEG1fz1sK').get();
  7. return orilist.data
  8. }
  9. module.exports = {
  10. LiveService,
  11. }