You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
293 B

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
)
const (
// ArticleType means the post is an ariticle
ArticleType = 1
)