This repository has been archived on 2025-12-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
authapp/authserver/deps.js
2023-04-22 19:17:15 +03:00

12 lines
479 B
JavaScript

export { configure, renderFile } from "https://deno.land/x/eta@v2.0.0/mod.ts";
export {
Application,
Router,
send,
} from "https://deno.land/x/oak@v11.1.0/mod.ts";
import postgres from "https://deno.land/x/postgresjs@v3.3.3/mod.js";
export { postgres };
export { Session } from "https://deno.land/x/oak_sessions@v4.0.5/mod.ts";
export * as bcrypt from "https://deno.land/x/bcrypt@v0.4.1/mod.ts";
export * as validasaur from "https://deno.land/x/validasaur@v0.15.0/mod.ts";