Skip to content

Commit

Permalink
chore: organize imports
Browse files Browse the repository at this point in the history
  • Loading branch information
farreldarian committed Jun 13, 2024
1 parent f0f1de3 commit c77665a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/usage/src/lib/mysql.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { drizzle } from 'drizzle-orm/mysql2'
import mysql from 'mysql2/promise'
import { schema } from 'prisma/mysql/drizzle/schema'
import { url, object, parse, string, pipe } from 'valibot'
import { url, object, parse, pipe, string } from 'valibot'

const env = parse(
object({
Expand Down
2 changes: 1 addition & 1 deletion packages/usage/src/lib/postgres.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { drizzle } from 'drizzle-orm/postgres-js'
import postgres from 'postgres'
import { schema } from 'prisma/drizzle/schema'
import { url, object, parse, string, pipe } from 'valibot'
import { url, object, parse, pipe, string } from 'valibot'

const env = parse(
object({
Expand Down

0 comments on commit c77665a

Please sign in to comment.