aboutsummaryrefslogtreecommitdiff
path: root/models/votes/vote.model.ts
blob: 1dbb1466dafaa45a9ebba20cd22bdfb748d3944c (plain)
1
2
3
4
5
import { Model, model } from 'mongoose';
import { VoteSchema, voteSchema } from './vote.schema';

export default model<VoteSchema, Model<VoteSchema>>('Vote', voteSchema);