9 lines
139 B
Go
9 lines
139 B
Go
package constants
|
|
|
|
type ResponseStatus string
|
|
|
|
const (
|
|
SuccessStatus ResponseStatus = "success"
|
|
ErrorStatus ResponseStatus = "error"
|
|
)
|