mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-13 19:16:51 +08:00
9 lines
193 B
JavaScript
9 lines
193 B
JavaScript
const { mongoDB } = require("../init/mongodb");
|
|
|
|
class PsaDAO {
|
|
static async get(uid, config) {
|
|
return await mongoDB().collection("psa").find().toArray();
|
|
}
|
|
}
|
|
|
|
module.exports = PsaDAO;
|