blob: 6bfd36d2810a08a184619f95196b9a29a15a1035 (
plain)
1
2
3
4
5
6
7
8
|
import odooApi from '@/core/api/odooApi';
const stateApi = async ({ tempo = false }) => {
const dataState = await odooApi('GET', `/api/v1/state?tempo=${tempo}`);
return dataState;
};
export default stateApi;
|