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