📜  出口控制器 - 任何代码示例

📅  最后修改于: 2022-03-11 15:00:21.693000             🧑  作者: Mango

代码示例1
function helloWorld() {

    return "hello method";
}

function mySecondMethod() {

    return "hello my second method";
}

function myThirdMethod() {

    return "hello my third method";
}

module.exports = {
    helloWorld,
    mySecondMethod,
    myThirdMethod
}