6 lines
153 B
TypeScript
6 lines
153 B
TypeScript
import { Types } from 'mongoose';
|
|
|
|
import { Auth } from '../../model/auth';
|
|
|
|
export const readOneById = async (id: Types.ObjectId) => Auth.findById(id);
|