1
0
mirror of https://github.com/Bubka/2FAuth.git synced 2025-06-07 05:26:57 +02:00

22 lines
373 B
JavaScript
Vendored

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