sing-box/experimental/libbox/setup.go
2023-03-15 14:56:06 +08:00

22 lines
315 B
Go

//go:build linux || darwin
package libbox
import (
C "github.com/sagernet/sing-box/constant"
"github.com/dustin/go-humanize"
)
func SetBasePath(path string) {
C.SetBasePath(path)
}
func Version() string {
return C.Version
}
func FormatBytes(length int64) string {
return humanize.Bytes(uint64(length))
}