11 lines
385 B
JavaScript
11 lines
385 B
JavaScript
|
|
||
|
module.exports = Self => {
|
||
|
require('../methods/account/sync')(Self);
|
||
|
require('../methods/account/sync-by-id')(Self);
|
||
|
require('../methods/account/sync-all')(Self);
|
||
|
require('../methods/account/login')(Self);
|
||
|
require('../methods/account/logout')(Self);
|
||
|
require('../methods/account/change-password')(Self);
|
||
|
require('../methods/account/set-password')(Self);
|
||
|
};
|