mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-13 14:41:28 +00:00
9 lines
183 B
JavaScript
9 lines
183 B
JavaScript
var endpoint = require('./endpoint.js');
|
|
|
|
var RegisterAPI = function(app, api) {
|
|
endpoint.Register(app, api, 'item', 'items', 'id');
|
|
};
|
|
|
|
module.exports = {
|
|
'Register': RegisterAPI
|
|
} |