mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-05-02 21:34:36 +02:00
14 lines
242 B
JavaScript
Vendored
14 lines
242 B
JavaScript
Vendored
import { httpClientFactory } from '@/services/httpClientFactory'
|
|
|
|
const webClient = httpClientFactory('web')
|
|
|
|
export default {
|
|
/**
|
|
*
|
|
* @returns
|
|
*/
|
|
getSystemInfos() {
|
|
return webClient.get('infos')
|
|
},
|
|
|
|
} |