mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-20 20:52:33 +02:00
14 lines
215 B
Go
14 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()
|
|
}
|
|
}
|