15 lines
266 B
JavaScript
15 lines
266 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
doc : "",
|
|
path : "/",
|
|
method : ["get", "post"],
|
|
middleware: [],
|
|
params : {},
|
|
return : {},
|
|
controller: async (ctx, app) => {
|
|
|
|
ctx.body = 'index,xe:' + app.utils.VERSION
|
|
}
|
|
}
|