how would I use validators from drizzle-zod in expo?
I am reading this on the create-t3-turbo README:
Currently, I am referencing the OpenStatus repo where they create the validation schemas in the db package https://github.com/openstatusHQ/openstatus/blob/main/packages/db/src/schema/users/validation.ts. How would I use these in expo if I cannot have
Do I have to manually create the validators in the validators package and only use
Currently, I am referencing the OpenStatus repo where they create the validation schemas in the db package https://github.com/openstatusHQ/openstatus/blob/main/packages/db/src/schema/users/validation.ts. How would I use these in expo if I cannot have
@acme/db as a dependency?Do I have to manually create the validators in the validators package and only use
drizzle-zod in Next.js?