package post
const (
// PostDraft means the post is in draft phase
PostDraft = 1
// PostPublished means the post already published
PostPublished = 2
// PostDelete means the post has been deleted
PostDelete = 3
)
// ArticleType means the post is an ariticle
ArticleType = 1