Skip to content

Commit

Permalink
Add module
Browse files Browse the repository at this point in the history
  • Loading branch information
rmcdaniel committed Oct 16, 2023
1 parent 6246717 commit 14b3291
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions mod.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import * as ModelMySQL from './model/mysql.ts'
import * as ModelPostgreSQL from './model/pgsql.ts'

import * as QueueMySQL from './queue/mysql.ts'
import * as QueueRedis from './queue/redis.ts'
import * as QueuePostgreSQL from './queue/pgsql.ts'

export const model = {
MySQL: ModelMySQL.MySQL,
PostgreSQL: ModelPostgreSQL.PostgreSQL
}

export const queue = {
MySQL: QueueMySQL.MySQL,
Redis: QueueRedis.Redis,
PostgreSQL: QueuePostgreSQL.PostgreSQL
}

export { WorkflowStub } from './workflow.ts'
export { DefaultCrypto } from './crypto.ts'

0 comments on commit 14b3291

Please sign in to comment.