| 2 | import { z } from 'zod'; |
| 3 | |
| 4 | export interface PostTs { |
| 5 | id: string; |
| 6 | title: string; |
| 7 | description: string | null; |
| 8 | content: string | null; |
| 9 | published: boolean; |
| 10 | tags: string[]; |
| 11 | } |
| 12 | |
| 13 | const c = initContract(); |
| 14 |
nothing calls this directly
no outgoing calls
no test coverage detected