[ci] yarn format

This commit is contained in:
natemoo-re 2022-02-16 14:50:05 +00:00 committed by GitHub Actions
parent ebe7f4d0ae
commit 19d548f400

View file

@ -62,10 +62,9 @@
createServer((req, res) => { createServer((req, res) => {
const route = app.match(req); const route = app.match(req);
if(route) { if (route) {
let html = await app.render(req, route); let html = await app.render(req, route);
} }
}).listen(8080); }).listen(8080);
``` ```