mirror of
https://github.com/oarkflow/socketio.git
synced 2025-12-24 13:57:56 +08:00
11 lines
254 B
Go
11 lines
254 B
Go
package serialize
|
|
|
|
import (
|
|
erro "github.com/oarkflow/socketio/internal/errors"
|
|
)
|
|
|
|
const (
|
|
ErrUnsupportedUseRead erro.String = "Serialize() method unsupported, use the Read() method instead"
|
|
ErrUnsupported erro.State = "method: unsupported"
|
|
)
|