2025-11-30 12:30:33 +01:00

16 lines
325 B
TypeScript

import {
Contribution,
creationFactory as creationFactoryDb,
CreationInterface,
nMonthsBefore
} from 'database'
export { CreationInterface, nMonthsBefore }
export const creationFactory = async (
_client: any,
creation: CreationInterface,
): Promise<Contribution> => {
return creationFactoryDb(creation)
}