mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-16 22:21:51 +00:00
Fix invalid response in default route
This commit is contained in:
parent
283041cd52
commit
e34f3b1442
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ connect().then(() => {
|
||||||
|
|
||||||
// Default route
|
// Default route
|
||||||
app.get("/", (req, res) => {
|
app.get("/", (req, res) => {
|
||||||
res.end({ status: "cookies" });
|
res.json({ status: "cookies", with: "milk" });
|
||||||
});
|
});
|
||||||
|
|
||||||
// Error response
|
// Error response
|
||||||
|
|
Loading…
Add table
Reference in a new issue