import http from '@/api/http'; export default (uuid: string, file: string, content: string): Promise => { return new Promise((resolve, reject) => { http.post( `/api/client/servers/${uuid}/files/write`, content, { params: { file }, headers: { 'Content-Type': 'text/plain', }, }, ) .then(() => resolve()) .catch(reject); }); };