mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-12 02:17:21 +08:00
10 lines
193 B
JavaScript
10 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;
|