eqemu-server/wi/http/data/account.js
2017-01-24 18:58:37 -08:00

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
}