import { Contribution } from '@entity/Contribution' export const findContribution = async (id: number): Promise => { return Contribution.findOne({ where: { id } }) }