mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 19:56:51 +08:00
20 lines
309 B
Go
20 lines
309 B
Go
|
package buf
|
||
|
|
||
|
import (
|
||
|
"github.com/sagernet/sing/common"
|
||
|
"github.com/sagernet/sing/common/buf"
|
||
|
)
|
||
|
|
||
|
type Buffer = buf.Buffer
|
||
|
|
||
|
var StackNewSize = buf.StackNewSize
|
||
|
var KeepAlive = common.KeepAlive
|
||
|
|
||
|
//go:norace
|
||
|
func Dup[T any](obj T) T {
|
||
|
return common.Dup(obj)
|
||
|
}
|
||
|
|
||
|
var Must = common.Must
|
||
|
var Error = common.Error
|