9 lines
319 B
TypeScript
9 lines
319 B
TypeScript
import http from '@/api/http';
|
|
|
|
export default (server: string, file: string): Promise<string> => {
|
|
return new Promise((resolve, reject) => {
|
|
http.get(`/api/client/servers/${server}/files/contents`, { params: { file } })
|
|
.then(({ data }) => resolve(data))
|
|
.catch(reject);
|
|
});
|
|
};
|