/* * token.ts * Copyright (C) 2023 veypi * 2023-09-30 17:37 * Distributed under terms of the MIT license. */ import ajax from './axios' export default (uuid: string) => { return { local: './app/' + uuid + '/token/', get(data: { app_id?: string, token: string }) { return ajax.post(this.local, data) }, } }