Files
recipe-manager/server/controllers/index.ts
Mikayla Dobson 2583163fbb ingredient route
2022-11-19 13:31:23 -06:00

9 lines
287 B
TypeScript

import CollectionCtl from "./CollectionCtl";
import GroceryListCtl from "./GroceryListCtl";
import IngredientCtl from "./IngredientCtl";
import RecipeCtl from "./RecipeCtl";
import UserCtl from "./UserCtl";
export {
CollectionCtl, GroceryListCtl, IngredientCtl, RecipeCtl, UserCtl
}