diff --git a/lib/config/constants.ts b/lib/config/constants.ts index 7f7de28..f2cc730 100644 --- a/lib/config/constants.ts +++ b/lib/config/constants.ts @@ -54,3 +54,11 @@ export const smtpConfig = Value.union( }, }), ) + +export function getConst() { + return { + get smtp() { + return smtpConfig.withWrapperData() + }, + } +}