Files
planka-zh/client/src/api/root.js
2023-10-17 19:18:19 +02:00

10 lines
149 B
JavaScript

import http from './http';
/* Actions */
const getConfig = (headers) => http.get('/config', undefined, headers);
export default {
getConfig,
};