import http from "@http/" import config from "@config/" class CarService { async index(data = {}, headers = {}) { return await http.get({ url: config.apiList.index, data, headers }) } } export default CarService