mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
17 lines
705 B
JavaScript
17 lines
705 B
JavaScript
const common = require('./common.js');
|
|
|
|
var RegisterEQW = function(app, api) {
|
|
common.Register('/api/eqw/getconfig', 'EQW::GetConfig', app, api);
|
|
common.Register('/api/eqw/islocked', 'EQW::IsLocked', app, api);
|
|
common.Register('/api/eqw/lock', 'EQW::Lock', app, api);
|
|
common.Register('/api/eqw/unlock', 'EQW::Unlock', app, api);
|
|
common.Register('/api/eqw/getplayercount', 'EQW::GetPlayerCount', app, api);
|
|
common.Register('/api/eqw/getzonecount', 'EQW::GetZoneCount', app, api);
|
|
common.Register('/api/eqw/getlaunchercount', 'EQW::GetLauncherCount', app, api);
|
|
common.Register('/api/eqw/getloginservercount', 'EQW::GetLoginServerCount', app, api);
|
|
};
|
|
|
|
module.exports = {
|
|
'Register': RegisterEQW
|
|
}
|