blog/models/questions/enums.go

12 lines
160 B
Go
Raw Normal View History

2018-12-24 00:18:04 +00:00
package questions
// Status of a Question.
type Status string
// Status options.
const (
Pending = "pending"
Answered = "answered"
Deleted = "deleted"
)