Add more files

This commit is contained in:
2025-02-08 19:34:20 -06:00
parent 82a0a290d4
commit 503e82c2f4
7 changed files with 159 additions and 2 deletions

7
deno/deps.ts Normal file
View File

@@ -0,0 +1,7 @@
// Database
export { Client as PostgresClient } from "https://deno.land/x/postgres@v0.19.3/mod.ts";
export type { ClientOptions as PostgresOptions } from "https://deno.land/x/postgres@v0.19.3/mod.ts";
// Redis
export { connect as redisConnect } from "https://deno.land/x/redis@v0.37.1/mod.ts";
export type { Redis } from "https://deno.land/x/redis@v0.37.1/mod.ts";