11 lines
221 B
Go
11 lines
221 B
Go
|
package status
|
||
|
|
||
|
type Status string
|
||
|
|
||
|
const (
|
||
|
STATUS_OK Status = "OK"
|
||
|
STATUS_NOT_FOUND Status = "not_found"
|
||
|
STATUS_BAD_REQUEST Status = "bad_request"
|
||
|
STATUS_SERVER_ERROR Status = "internal_server_error"
|
||
|
)
|