mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-28 13:01:31 +00:00
11 lines
238 B
JavaScript
11 lines
238 B
JavaScript
var endpoint = require('./endpoint.js');
|
|
|
|
var RegisterAPI = function(app, api) {
|
|
endpoint.Register(app, api, 'account', 'account', 'id');
|
|
|
|
//Can register custom controller actions here.
|
|
};
|
|
|
|
module.exports = {
|
|
'Register': RegisterAPI
|
|
} |