mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-26 10:15:40 +01:00
14 lines
235 B
JavaScript
14 lines
235 B
JavaScript
|
import { httpClientFactory } from '@/services/httpClientFactory'
|
||
|
|
||
|
const apiClient = httpClientFactory('api')
|
||
|
|
||
|
export default {
|
||
|
/**
|
||
|
*
|
||
|
* @returns
|
||
|
*/
|
||
|
getAll() {
|
||
|
return apiClient.get('groups')
|
||
|
},
|
||
|
|
||
|
}
|