mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-27 17:36:25 +02:00
7 lines
282 B
TypeScript
7 lines
282 B
TypeScript
|
|
import twitterPodcast from './twitter-podcast.json' with { type: 'json' };
|
||
|
|
import { Example } from '../application/entities/example.js';
|
||
|
|
import z from 'zod';
|
||
|
|
|
||
|
|
export const examples: Record<string, z.infer<typeof Example>> = {
|
||
|
|
"twitter-podcast": Example.parse(twitterPodcast),
|
||
|
|
};
|