mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-12-29 05:58:22 +09:00
9 lines
181 B
TypeScript
9 lines
181 B
TypeScript
import db from '../../db/mongodb';
|
|
|
|
const collection = db.collection('access_tokens');
|
|
|
|
collection.createIndex('token');
|
|
collection.createIndex('hash');
|
|
|
|
export default collection;
|