mirror of
https://github.com/yusing/godoxy.git
synced 2026-02-24 01:35:00 +01:00
15 lines
215 B
Go
15 lines
215 B
Go
package expect
|
|
|
|
import (
|
|
"github.com/bytedance/sonic"
|
|
"github.com/yusing/go-proxy/internal/common"
|
|
)
|
|
|
|
func init() {
|
|
if common.IsTest {
|
|
sonic.ConfigDefault = sonic.Config{
|
|
SortMapKeys: true,
|
|
}.Froze()
|
|
}
|
|
}
|