feat(*): 代码仓库初始化
This commit is contained in:
15
Server/tests/test2/myModule.js
Normal file
15
Server/tests/test2/myModule.js
Normal file
@@ -0,0 +1,15 @@
|
||||
const auther = "harry";
|
||||
|
||||
const greet = (name) => {
|
||||
return `Hello, ${name}!`;
|
||||
};
|
||||
|
||||
const add = (a, b) => {
|
||||
return a + b;
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
auther,
|
||||
greet,
|
||||
add
|
||||
}
|
||||
Reference in New Issue
Block a user