balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

General.js (225B)


      1 import { Axios as api } from './axios'
      2 
      3 export const General = {
      4     metaData() {
      5         return api.get('meta-data')
      6     },
      7     ping(action) {
      8         return api.post('simple-ping', {
      9             action,
     10         })
     11     },
     12 }