Files
feeddeck/supabase/functions/_shared/utils/index.ts
Rico Berger b8fdbf17a2 Rework Edge Functions (#247)
Instead of using an `import_map.json` file to define the versions for
dependencies, they are now defined directly within the import. Since the
`import_map.json` file should not be used anymore and instead a
`deno.json` file per function should be used, we decided to define them
directly with the code. The overhead compared to a `deno.json` file per
function shouldn't be that large and it makes using functions in a
self-hosted setup easier.
2025-04-23 17:00:21 +02:00

13 lines
254 B
TypeScript

import { fetchWithTimeout } from "./fetchWithTimeout.ts";
import { log } from "./log.ts";
import { md5 } from "./md5.ts";
import { decrypt, encrypt } from "./encrypt.ts";
export const utils = {
fetchWithTimeout,
log,
md5,
encrypt,
decrypt,
};