mirror of
https://github.com/number571/go-peer.git
synced 2026-09-14 11:05:42 +05:00
11 lines
266 B
Go
11 lines
266 B
Go
package state
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrStateEnabled = errors.New("state already enabled")
|
|
ErrStateDisabled = errors.New("state already disabled")
|
|
ErrFuncEnable = errors.New("enable state function")
|
|
ErrFuncDisable = errors.New("disable state function")
|
|
)
|