TinySkin/model/const.go
2023-09-02 00:39:35 +08:00

10 lines
88 B
Go

package model
type APIStatus int
const (
OK APIStatus = iota
ErrInput
ErrService
)