Format & fix lint

This commit is contained in:
nimbleghost
2023-06-13 14:02:54 +02:00
parent 8ccfa5c3fb
commit 390d42c607
6 changed files with 13 additions and 11 deletions

View File

@@ -2,8 +2,8 @@ import db from "./db";
import session from "./Session";
class UserManager {
constructor(db) {
this.db = db;
constructor(dbImpl) {
this.db = dbImpl;
}
async all() {