9 lines
83 B
Go
9 lines
83 B
Go
package blog
|
|
|
|
type STAGE int
|
|
|
|
const (
|
|
STAGE_DRAFT STAGE = iota
|
|
STAGE_PUBLISHED
|
|
)
|