10 lines
88 B
Go
10 lines
88 B
Go
package model
|
|
|
|
type APIStatus int
|
|
|
|
const (
|
|
OK APIStatus = iota
|
|
ErrInput
|
|
ErrService
|
|
)
|