First commit

This commit is contained in:
AndrewTrieu
2023-04-21 13:17:50 +03:00
commit c9f31e5c8a
26 changed files with 465 additions and 0 deletions

13
authserver/deps.js Normal file
View File

@@ -0,0 +1,13 @@
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 { readFileSync } from "https://deno.land/std@0.152.0/node/fs.ts";
export { readFileSync };
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";