Select Git revision
-
Xoaquin Castrelo authoredXoaquin Castrelo authored
EventService.js 308 B
import axios from 'axios'
const apiClient = axios.create({
baseURL: 'https://api.kinopio.club',
withCredentials: false,
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
},
})
export default {
getNewSpaces() {
return apiClient.get('/space/new-spaces')
},
}