db structure abstraction; async collection; update/insert queries; model saving
This commit is contained in:
1
lib/src/external/db.ts
vendored
Normal file
1
lib/src/external/db.ts
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export * from 'https://deno.land/x/postgres/mod.ts'
|
||||
2
lib/src/external/http.ts
vendored
Normal file
2
lib/src/external/http.ts
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
export * from 'https://deno.land/std@0.53.0/http/server.ts'
|
||||
export * from 'https://deno.land/std@0.53.0/http/cookie.ts'
|
||||
1
lib/src/external/postgres.ts
vendored
Normal file
1
lib/src/external/postgres.ts
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export * from 'https://deno.land/x/postgres/mod.ts'
|
||||
5
lib/src/external/std.ts
vendored
5
lib/src/external/std.ts
vendored
@@ -1,3 +1,4 @@
|
||||
export { serve } from 'https://deno.land/std/http/server.ts'
|
||||
export * from 'https://deno.land/std/fmt/colors.ts'
|
||||
export * from 'https://deno.land/std@0.53.0/fmt/colors.ts'
|
||||
export { config as dotenv } from 'https://deno.land/x/dotenv/mod.ts'
|
||||
export * as path from 'https://deno.land/std@0.53.0/path/mod.ts'
|
||||
export * as fs from 'https://deno.land/std@0.53.0/fs/mod.ts'
|
||||
|
||||
Reference in New Issue
Block a user