post.db.ts 171 Bytes
Newer Older
Kim, MinGyu's avatar
Kim, MinGyu committed
1
2
3
4
5
6
7
import { PostType, Post } from "../models";

export const createPost = async (post: PostType) => {
    const newPost = await Post.create(post);
    return newPost;
  };