frontend-apt

Untitled

Jun 22nd, 2022 (edited)
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import AXIOS from '@/middleware/axios'
  2. const SONG_SERVICE = {
  3.   async getSongHistory(params) {
  4.     const { res, status } = await AXIOS.get("/song-history", {
  5.       params,
  6.       cache: {
  7.         ttl: 1000 * 60 * 5,
  8.       },
  9.     })
  10.     return { res, status }
  11.   },
  12. }
  13.  
  14. export default SONG_SERVICE
Add Comment
Please, Sign In to add comment