go17/vblog/apps/blog/enum.go

9 lines
83 B
Go

package blog
type STAGE int
const (
STAGE_DRAFT STAGE = iota
STAGE_PUBLISHED
)