mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 11:03:13 +00:00
20 lines
288 B
Go
20 lines
288 B
Go
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.IBytes(uint64(length))
|
|
}
|