mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 03:47:38 +03:00
11 lines
229 B
Go
11 lines
229 B
Go
package json
|
|
|
|
import "context"
|
|
|
|
type ContextMarshaler interface {
|
|
MarshalJSONContext(ctx context.Context) ([]byte, error)
|
|
}
|
|
|
|
type ContextUnmarshaler interface {
|
|
UnmarshalJSONContext(ctx context.Context, content []byte) error
|
|
}
|