mirror of
https://github.com/Fabio286/antares.git
synced 2025-06-05 21:59:22 +02:00
10 lines
227 B
JavaScript
10 lines
227 B
JavaScript
'use strict';
|
|
import { ipcRenderer } from 'electron';
|
|
import { unproxify } from '../libs/unproxify';
|
|
|
|
export default class {
|
|
static getUsers (params) {
|
|
return ipcRenderer.invoke('get-users', unproxify(params));
|
|
}
|
|
}
|