mirror of
https://github.com/bubblecup-12/VogelSocialMedia.git
synced 2025-07-07 01:58:47 +00:00
4 lines
90 B
TypeScript
4 lines
90 B
TypeScript
import { z } from "zod";
|
|
export const updateBioSchema = z.object({
|
|
bio: z.string(),
|
|
});
|