import { PostType, Post } from "../models"; export const createPost = async (post: PostType) => { const newPost = await Post.create(post); return newPost; };