Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/middleware/with-db.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { DbClient } from "lib/db/db-client"
import { createDatabase } from "lib/db/db-client"
import type { Middleware } from "winterspec"
import type { Middleware } from "winterspec/middleware"

export const withDb: Middleware<
{},
Expand Down
1 change: 1 addition & 0 deletions lib/middleware/with-winter-spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { createWithWinterSpec } from "winterspec"
import type { Middleware } from "winterspec/middleware"
import { withDb } from "./with-db"

export const withRouteSpec = createWithWinterSpec({
Expand Down
Loading