Update casing for services and controllers directories.

This commit is contained in:
Aaron William Po
2023-12-10 18:15:35 -05:00
parent fd641c36ab
commit 8b0d182cb3
184 changed files with 195 additions and 190 deletions

View File

@@ -1,14 +1,14 @@
import DBClient from '@/prisma/DBClient';
import getAllBreweryPostsByPostedById from '@/services/posts/BreweryPost/getAllBreweryPostsByPostedById';
import getAllBreweryPostsByPostedById from '@/services/posts/brewery-post/getAllBreweryPostsByPostedById';
import APIResponseValidationSchema from '@/validation/APIResponseValidationSchema';
import { NextApiResponse } from 'next';
import { z } from 'zod';
import getAllBreweryPosts from '@/services/posts/BreweryPost/getAllBreweryPosts';
import createNewBreweryPost from '@/services/posts/BreweryPost/createNewBreweryPost';
import getAllBreweryPosts from '@/services/posts/brewery-post/getAllBreweryPosts';
import createNewBreweryPost from '@/services/posts/brewery-post/createNewBreweryPost';
import geocode from '@/config/mapbox/geocoder';
import ServerError from '@/config/util/ServerError';
import BreweryPostMapQueryResult from '@/services/posts/BreweryPost/schema/BreweryPostMapQueryResult';
import BeerPostQueryResult from '@/services/posts/BeerPost/schema/BeerPostQueryResult';
import BreweryPostMapQueryResult from '@/services/posts/brewery-post/schema/BreweryPostMapQueryResult';
import BeerPostQueryResult from '@/services/posts/beer-post/schema/BeerPostQueryResult';
import { CreateBreweryPostRequest, GetBreweryPostsRequest } from './types';
import { GetAllPostsByConnectedPostId } from '../types';