Add v2 interface support for nodes env (#836)
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
module.exports.entry1 = async function(context) {
|
||||
return {
|
||||
status: 200,
|
||||
body: "Hello, entry 1!\n"
|
||||
};
|
||||
}
|
||||
|
||||
module.exports.entry2 = async function(context) {
|
||||
return {
|
||||
status: 200,
|
||||
body: "Hello, entry 2!\n"
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user