Add support for MySQL.

This commit is contained in:
Mike Cao 2020-08-11 20:05:40 -07:00
parent e309376150
commit a248f35db2
9 changed files with 302 additions and 102 deletions

View file

@ -23,3 +23,7 @@ export function forbidden(res, msg) {
export function methodNotAllowed(res, msg) {
res.status(405).end(msg);
}
export function serverError(res, msg) {
res.status(500).end(msg);
}