-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdeps.ts
13 lines (13 loc) · 885 Bytes
/
deps.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
// https://github.com/bashovski/stampede-cli
export { parse } from 'https://deno.land/std/encoding/yaml.ts';
export * as log from "https://deno.land/std/log/mod.ts";
export { cron } from 'https://deno.land/x/deno_cron/cron.ts';
export { Database, DataTypes, Model } from 'https://raw.githubusercontent.com/eveningkid/denodb/abed3063dd92436ceb4f124227daee5ee6604b2d/mod.ts';
export { Application } from 'https://deno.land/x/oak/mod.ts';
export { v4 } from "https://deno.land/std/uuid/mod.ts";
export { oakCors } from "https://deno.land/x/cors/mod.ts";
export * as bcrypt from 'https://deno.land/x/bcrypt/mod.ts';
export { createHash } from 'https://deno.land/std/hash/mod.ts';
export * as moment from 'https://cdn.skypack.dev/moment';