12 lines
160 B
Go
12 lines
160 B
Go
package questions
|
|
|
|
// Status of a Question.
|
|
type Status string
|
|
|
|
// Status options.
|
|
const (
|
|
Pending = "pending"
|
|
Answered = "answered"
|
|
Deleted = "deleted"
|
|
)
|