import Service from '../lib/service' class AboutService extends Service{ constructor() { super() } async getTest() { let result = await this.get("/") //console.log("about service getTest", result) return result } async postTest(params = {}) { return await this.post("/", params) //console.log("about service getTest", result) } } export default new AboutService