settings.ts 255 B

12345678910111213
  1. import http from '@/lib/http'
  2. const settings = {
  3. get() {
  4. return http.get('/settings')
  5. },
  6. // eslint-disable-next-line @typescript-eslint/no-explicit-any
  7. save(data: any) {
  8. return http.post('/settings', data)
  9. },
  10. }
  11. export default settings