blob: 8943c61e620d225e33d3b401a6544198bd346656 (
plain)
1
2
3
4
5
6
7
8
|
import odooApi from '@/core/api/odooApi'
const blogsApi = async ({ limit, offset }) => {
const dataBlogs = await odooApi('GET', `/api/v1/blog?limit=${limit}&offset=${offset}`)
return dataBlogs
}
export default blogsApi
|