Skip to content

Commit

Permalink
fix: rename types (#11)
Browse files Browse the repository at this point in the history
* fix: rename types.ts

* fix: rename types.ts
  • Loading branch information
nimrodkor authored Oct 11, 2024
1 parent 527c5e3 commit 40abef3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/classes/pgmq.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Pool } from "pg"
import { parseDbMessage } from "./message"
import { parseDbMessage } from "./types"
import {
archiveQuery,
createQueueQuery,
Expand Down
2 changes: 1 addition & 1 deletion src/classes/queue.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Pool } from "pg"
import { archiveQuery, deleteQuery, readQuery } from "./queries"
import { parseDbMessage } from "./message"
import { parseDbMessage } from "./types"

export class Queue {
private pool: Pool
Expand Down
File renamed without changes.

0 comments on commit 40abef3

Please sign in to comment.