Files
recipe-manager/server/controllers/index.ts
2022-12-08 14:06:08 -06:00

10 lines
338 B
TypeScript

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