mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-12-11 17:50:39 +01:00
14 lines
209 B
JavaScript
14 lines
209 B
JavaScript
|
import { apiFactory } from '@/services/apiFactory'
|
||
|
|
||
|
const web = apiFactory('web')
|
||
|
|
||
|
export default {
|
||
|
/**
|
||
|
*
|
||
|
* @returns
|
||
|
*/
|
||
|
getSystemInfos() {
|
||
|
return web.get('infos')
|
||
|
},
|
||
|
|
||
|
}
|