oktopus/backend/services/stomp/frame/errors.go
2023-10-28 16:00:27 -03:00

10 lines
101 B
Go

package frame
import (
"errors"
)
var (
ErrInvalidHeartBeat = errors.New("invalid heart-beat")
)