mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 21:51:23 +08:00
21 lines
292 B
Go
21 lines
292 B
Go
package buf
|
|
|
|
import (
|
|
"github.com/sagernet/sing/common"
|
|
"github.com/sagernet/sing/common/buf"
|
|
)
|
|
|
|
const BufferSize = buf.BufferSize
|
|
|
|
type Buffer = buf.Buffer
|
|
|
|
var New = buf.New
|
|
var NewSize = buf.NewSize
|
|
var With = buf.With
|
|
var As = buf.As
|
|
|
|
var (
|
|
Must = common.Must
|
|
Error = common.Error
|
|
)
|