go17/vblog/apps/blog/enum.go

9 lines
83 B
Go
Raw Normal View History

2024-12-01 16:05:07 +08:00
package blog
type STAGE int
const (
STAGE_DRAFT STAGE = iota
STAGE_PUBLISHED
)