2FAuth/resources/js_vue3/services/systemService.js
2023-11-21 13:45:47 +01:00

14 lines
242 B
JavaScript
Vendored

import { httpClientFactory } from '@/services/httpClientFactory'
const webClient = httpClientFactory('web')
export default {
/**
*
* @returns
*/
getSystemInfos() {
return webClient.get('infos')
},
}