2025-09-20 11:35:40 +09:00
|
|
|
/**
|
|
|
|
|
* Shared Validation Schemas
|
|
|
|
|
* Pure Zod schemas for API contracts - shared between frontend and backend
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// Re-export Zod for convenience
|
2025-09-24 18:00:49 +09:00
|
|
|
export { z } from "zod";
|
2025-09-20 11:35:40 +09:00
|
|
|
|
|
|
|
|
// Framework-specific exports
|
2025-09-24 18:00:49 +09:00
|
|
|
export * from "./react";
|