mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 20:13:49 +00:00
chore: Update api service type directories to maintain consistency
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import { z } from 'zod';
|
||||
|
||||
const beerPostQueryResult = z.object({
|
||||
const BeerPostQueryResult = z.object({
|
||||
id: z.string(),
|
||||
name: z.string(),
|
||||
brewery: z.object({ id: z.string(), name: z.string() }),
|
||||
@@ -15,4 +15,4 @@ const beerPostQueryResult = z.object({
|
||||
createdAt: z.coerce.date(),
|
||||
});
|
||||
|
||||
export default beerPostQueryResult;
|
||||
export default BeerPostQueryResult;
|
||||
|
||||
Reference in New Issue
Block a user