Try to fix loon bug

This commit is contained in:
Peng-YM 2020-10-06 10:54:02 +08:00
parent 22914f792c
commit 966d1e6ab9
2 changed files with 4 additions and 1 deletions

View File

@ -113,6 +113,9 @@ $app.route("/")
})
.options(async (req, res) => {
res.status(200).end();
})
.all(async (req, res) => {
res.send("Hello from sub-store, made with ❤️ by Peng-YM");
});
$app.start();

File diff suppressed because one or more lines are too long