mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-24 23:04:00 +08:00
10 lines
199 B
TypeScript
10 lines
199 B
TypeScript
|
import db from "../init/db";
|
||
|
|
||
|
class PsaDAO {
|
||
|
static async get(): Promise<MonkeyTypes.PSA[]> {
|
||
|
return await db.collection<MonkeyTypes.PSA>("psa").find().toArray();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default PsaDAO;
|