📅  最后修改于: 2022-03-11 15:00:21.693000             🧑  作者: Mango
function helloWorld() {
return "hello method";
}
function mySecondMethod() {
return "hello my second method";
}
function myThirdMethod() {
return "hello my third method";
}
module.exports = {
helloWorld,
mySecondMethod,
myThirdMethod
}