11 lines
102 B
Go
11 lines
102 B
Go
package model
|
|
|
|
type APIStatus int
|
|
|
|
const (
|
|
OK APIStatus = iota
|
|
ErrInput
|
|
ErrService
|
|
ErrExistUser
|
|
)
|