Files
test_server/functions/index.js
2025-06-06 06:22:57 +09:00

7 lines
255 B
JavaScript

const { helloWorld1 } = require("./helloWorld1");
const { helloWorld2 } = require("./helloWorld2");
const { helloWorld3 } = require("./helloWorld3");
exports.helloWorld1 = helloWorld1;
exports.helloWorld2 = helloWorld2;
exports.helloWorld3 = helloWorld3;